Committed by
Gerrit Code Review
Remove methods just calling its super
Change-Id: I8eaa1b8e7efb70c51b0bf8877f7d77eddf8e66a2
Showing
1 changed file
with
0 additions
and
26 deletions
... | @@ -27,7 +27,6 @@ import com.google.common.collect.Sets; | ... | @@ -27,7 +27,6 @@ import com.google.common.collect.Sets; |
27 | import io.atomix.copycat.server.Commit; | 27 | import io.atomix.copycat.server.Commit; |
28 | import io.atomix.copycat.server.Snapshottable; | 28 | import io.atomix.copycat.server.Snapshottable; |
29 | import io.atomix.copycat.server.StateMachineExecutor; | 29 | import io.atomix.copycat.server.StateMachineExecutor; |
30 | -import io.atomix.copycat.server.session.ServerSession; | ||
31 | import io.atomix.copycat.server.session.SessionListener; | 30 | import io.atomix.copycat.server.session.SessionListener; |
32 | import io.atomix.copycat.server.storage.snapshot.SnapshotReader; | 31 | import io.atomix.copycat.server.storage.snapshot.SnapshotReader; |
33 | import io.atomix.copycat.server.storage.snapshot.SnapshotWriter; | 32 | import io.atomix.copycat.server.storage.snapshot.SnapshotWriter; |
... | @@ -113,11 +112,6 @@ public class AtomixConsistentSetMultimapState extends ResourceStateMachine | ... | @@ -113,11 +112,6 @@ public class AtomixConsistentSetMultimapState extends ResourceStateMachine |
113 | executor.register(Replace.class, this::replace); | 112 | executor.register(Replace.class, this::replace); |
114 | } | 113 | } |
115 | 114 | ||
116 | - @Override | ||
117 | - public void delete() { | ||
118 | - super.delete(); | ||
119 | - } | ||
120 | - | ||
121 | /** | 115 | /** |
122 | * Handles a Size commit. | 116 | * Handles a Size commit. |
123 | * | 117 | * |
... | @@ -372,26 +366,6 @@ public class AtomixConsistentSetMultimapState extends ResourceStateMachine | ... | @@ -372,26 +366,6 @@ public class AtomixConsistentSetMultimapState extends ResourceStateMachine |
372 | return backingMap.get(commit.operation().key()).addCommit(commit); | 366 | return backingMap.get(commit.operation().key()).addCommit(commit); |
373 | } | 367 | } |
374 | 368 | ||
375 | - @Override | ||
376 | - public void register(ServerSession session) { | ||
377 | - super.register(session); | ||
378 | - } | ||
379 | - | ||
380 | - @Override | ||
381 | - public void unregister(ServerSession session) { | ||
382 | - super.unregister(session); | ||
383 | - } | ||
384 | - | ||
385 | - @Override | ||
386 | - public void expire(ServerSession session) { | ||
387 | - super.expire(session); | ||
388 | - } | ||
389 | - | ||
390 | - @Override | ||
391 | - public void close(ServerSession session) { | ||
392 | - super.close(session); | ||
393 | - } | ||
394 | - | ||
395 | private interface MapEntryValue { | 369 | private interface MapEntryValue { |
396 | 370 | ||
397 | /** | 371 | /** | ... | ... |
-
Please register or login to post a comment