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:
parent
5e12903325
commit
ac6e85792f
|
@ -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(' ');
|
||||||
|
|
Loading…
Reference in New Issue