Fixed minor changes suggested by Checkstyle

This commit is contained in:
bordoisila1 2018-08-20 22:36:58 -04:00
parent 16df157181
commit e1a2f141c5
2 changed files with 3 additions and 2 deletions

View File

@ -25,6 +25,6 @@ package com.iluwatar.acyclicvisitor;
/** /**
* ZoomVisitor interface * ZoomVisitor interface
*/ */
public interface ZoomVisitor extends ModemVisitor{ public interface ZoomVisitor extends ModemVisitor {
void visit(Zoom zoom); void visit(Zoom zoom);
} }

View File

@ -105,6 +105,7 @@ public final class Retry<T> implements BusinessOperation<T> {
//ignore //ignore
} }
} }
} while (true); }
while (true);
} }
} }