Remove final modifier from private methods (#30737)

This commit is contained in:
Andrei Arlou 2021-10-04 10:18:02 +03:00 committed by GitHub
parent 2bc8460777
commit 3045e1775a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 8 deletions

View file

@ -58,7 +58,7 @@ public class SimpleEchoHandler extends AbstractActor {
.build();
}
private final Receive buffering() {
private Receive buffering() {
return receiveBuilder()
.match(
Received.class,
@ -91,7 +91,7 @@ public class SimpleEchoHandler extends AbstractActor {
private long transferred;
private long stored = 0;
private Queue<ByteString> storage = new LinkedList<ByteString>();
private Queue<ByteString> storage = new LinkedList<>();
private boolean suspended = false;
private boolean closing = false;