No need to declare private method final

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1512398 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benedikt Ritter 2013-08-09 17:06:48 +00:00
parent 152d50c4f7
commit a223126567
1 changed files with 1 additions and 1 deletions

View File

@ -287,7 +287,7 @@ final class Lexer {
}
}
private final char mapNullToDisabled(final Character c) {
private char mapNullToDisabled(final Character c) {
return c == null ? DISABLED : c.charValue();
}