Skip to content

Commit b642623

Browse files
authored
Merge pull request iluwatar#787 from bordoisila1/checkstyle-minor-updates
Fixed minor changes suggested by Checkstyle
2 parents 9d01277 + e1a2f14 commit b642623

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

acyclic-visitor/src/main/java/com/iluwatar/acyclicvisitor/ZoomVisitor.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@
2525
/**
2626
* ZoomVisitor interface
2727
*/
28-
public interface ZoomVisitor extends ModemVisitor{
28+
public interface ZoomVisitor extends ModemVisitor {
2929
void visit(Zoom zoom);
3030
}

retry/src/main/java/com/iluwatar/retry/Retry.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ public T perform() throws BusinessException {
105105
//ignore
106106
}
107107
}
108-
} while (true);
108+
}
109+
while (true);
109110
}
110111
}

0 commit comments

Comments
 (0)