Remove final modifier from private methods (#30737)
This commit is contained in:
parent
2bc8460777
commit
3045e1775a
2 changed files with 8 additions and 8 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue