Drop modifiers which are implied by the context
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1742149 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
b8f37e2168
commit
04b36452dd
|
@ -153,7 +153,7 @@ public final class CSVFormat implements Serializable {
|
|||
*
|
||||
* @since 1.2
|
||||
*/
|
||||
public static enum Predefined {
|
||||
public enum Predefined {
|
||||
|
||||
/**
|
||||
* @see CSVFormat#DEFAULT
|
||||
|
@ -194,7 +194,7 @@ public final class CSVFormat implements Serializable {
|
|||
|
||||
private final CSVFormat format;
|
||||
|
||||
private Predefined(final CSVFormat format) {
|
||||
Predefined(final CSVFormat format) {
|
||||
this.format = format;
|
||||
}
|
||||
|
||||
|
@ -206,7 +206,7 @@ public final class CSVFormat implements Serializable {
|
|||
public CSVFormat getFormat() {
|
||||
return format;
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
* Standard comma separated format, as for {@link #RFC4180} but allowing empty lines.
|
||||
|
|
Loading…
Reference in New Issue