Skip to content

Commit ac6e857

Browse files
committed
Stop Eclipse complaining about fall-through
git-svn-id: https://svn.apache.org/repos/asf/commons/sandbox/csv/trunk@1298223 13f79535-47bb-0310-9956-ffa450edef68
1 parent 5e12903 commit ac6e857

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/org/apache/commons/csv/CSVPrinter.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,8 @@ public void printComment(String comment) throws IOException {
110110
if (i + 1 < comment.length() && comment.charAt(i + 1) == '\n') {
111111
i++;
112112
}
113-
// break intentionally excluded.
114-
case '\n':
113+
//$FALL-THROUGH$ break intentionally excluded.
114+
case '\n':
115115
println();
116116
out.append(format.getCommentStart());
117117
out.append(' ');

0 commit comments

Comments
 (0)