Skip to content

Commit

Permalink
Fix col 72
Browse files Browse the repository at this point in the history
  • Loading branch information
samdion1994 committed Nov 20, 2023
1 parent 87bc610 commit 20fab62
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -233,8 +233,8 @@ public String interpretNextLine() {
}

// Current line might change from when it was originally read
if (reader.getCurrentLine().getUnNumberedString().length() > 71 )
return reader.getCurrentLine().getUnNumberedString().substring(0, 71);
if (reader.getCurrentLine().getUnNumberedString().length() > 72 )
return reader.getCurrentLine().getUnNumberedString().substring(0, 72);
else
return reader.getCurrentLine().getUnNumberedString();
}
Expand Down

0 comments on commit 20fab62

Please sign in to comment.