Skip to content

Commit

Permalink
Remove unnecessary semi-colons
Browse files Browse the repository at this point in the history
  • Loading branch information
picimako committed Oct 17, 2023
1 parent 4435a40 commit 3c6eea1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public void doExecute(TestContext context) {
}


try (BufferedReader stdin = getInputReader();) {
try (BufferedReader stdin = getInputReader()) {
do {
logger.info(display);
input = stdin.readLine();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public String build() {
StringBuilder scriptBody = new StringBuilder();
String importStmt = "import ";

try (BufferedReader reader = new BufferedReader(new StringReader(scriptCode));) {
try (BufferedReader reader = new BufferedReader(new StringReader(scriptCode))) {
if (scriptCode.contains(importStmt)) {
String line;
while ((line = reader.readLine()) != null) {
Expand Down

0 comments on commit 3c6eea1

Please sign in to comment.