Skip to content

Commit

Permalink
Format code of shell getProperty
Browse files Browse the repository at this point in the history
  • Loading branch information
adrbessy committed Jan 4, 2022
1 parent f910bf7 commit 60761f5
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -153,9 +153,8 @@ public void run() {
}
}
}
Object res3 = shell.getProperty("out");
String propOut = res3.toString();
GroovyConsoleContent.writeIntoConsole(propOut, true);
String outputStream = shell.getProperty("out").toString();
GroovyConsoleContent.writeIntoConsole(outputStream, true);
GroovyConsoleContent.writeIntoConsole("END");
status = IStatus.OK;
} catch (MissingPropertyException e){
Expand Down

0 comments on commit 60761f5

Please sign in to comment.