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
This commit is contained in:
Sebastian Bazley 2012-03-07 23:41:14 +00:00
parent 5e12903325
commit ac6e85792f
1 changed files with 2 additions and 2 deletions

View File

@ -110,8 +110,8 @@ public class CSVPrinter {
if (i + 1 < comment.length() && comment.charAt(i + 1) == '\n') { if (i + 1 < comment.length() && comment.charAt(i + 1) == '\n') {
i++; i++;
} }
// break intentionally excluded. //$FALL-THROUGH$ break intentionally excluded.
case '\n': case '\n':
println(); println();
out.append(format.getCommentStart()); out.append(format.getCommentStart());
out.append(' '); out.append(' ');