Skip to content

Commit

Permalink
fix: remove new line in print
Browse files Browse the repository at this point in the history
  • Loading branch information
andre15silva committed Jul 24, 2024
1 parent ad6f437 commit 63eb758
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/github/assertkth/extractor/App.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public Integer call() throws Exception {
String result = Extractor.extract(input, lines);

if (result != null) {
System.out.println(result);
System.out.print(result);
return 0;
} else {
return 1;
Expand Down

0 comments on commit 63eb758

Please sign in to comment.