File tree Expand file tree Collapse file tree
src/main/java/org/apache/commons/csv Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -187,8 +187,7 @@ public class CSVFormat implements Serializable {
187187 *
188188 * @return true if <code>c</code> is a line break character
189189 */
190- // package protected to give access without needing a synthetic accessor
191- static boolean isLineBreak (final char c ) {
190+ private static boolean isLineBreak (final char c ) {
192191 return c == LF || c == CR ;
193192 }
194193
@@ -200,8 +199,7 @@ static boolean isLineBreak(final char c) {
200199 *
201200 * @return true if <code>c</code> is a line break character (and not null)
202201 */
203- // package protected to give access without needing a synthetic accessor
204- static boolean isLineBreak (final Character c ) {
202+ private static boolean isLineBreak (final Character c ) {
205203 return c != null && isLineBreak (c .charValue ());
206204 }
207205
You can’t perform that action at this time.
0 commit comments