Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
pstreef committed Apr 22, 2024
1 parent 0424d2e commit 147bd75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/openrewrite/LanguageComposition.java
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ public PrintOutputCapture<Integer> append(@Nullable String text) {
count++;
}
}
if(!text.isEmpty()) {
if (!text.isEmpty()) {
char last = text.charAt(text.length() - 1);
if (last != '\n' && last != '\r') {
count++;
Expand Down

0 comments on commit 147bd75

Please sign in to comment.