Skip to content

Commit

Permalink
[FLINK-7644] [runtime] Remove double semicolon.
Browse files Browse the repository at this point in the history
This closes apache#4692.
  • Loading branch information
yew1eb authored and fhueske committed Sep 21, 2017
1 parent 6886f63 commit 6c315be
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ public Long getValue() {
private class LatestCompletedCheckpointAlignmentBufferedGauge implements Gauge<Long> {
@Override
public Long getValue() {
CompletedCheckpointStats completed = latestCompletedCheckpoint;;
CompletedCheckpointStats completed = latestCompletedCheckpoint;
if (completed != null) {
return completed.getAlignmentBuffered();
} else {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -396,8 +396,8 @@ public void testCopyOnWriteContracts() {
public void testSerializerDuplicationInSnapshot() throws IOException {

final TestDuplicateSerializer namespaceSerializer = new TestDuplicateSerializer();
final TestDuplicateSerializer stateSerializer = new TestDuplicateSerializer();;
final TestDuplicateSerializer keySerializer = new TestDuplicateSerializer();;
final TestDuplicateSerializer stateSerializer = new TestDuplicateSerializer();
final TestDuplicateSerializer keySerializer = new TestDuplicateSerializer();

RegisteredKeyedBackendStateMetaInfo<Integer, Integer> metaInfo =
new RegisteredKeyedBackendStateMetaInfo<>(
Expand Down

0 comments on commit 6c315be

Please sign in to comment.