Skip to content

Commit 04b3645

Browse files
committed
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
1 parent b8f37e2 commit 04b3645

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/main/java/org/apache/commons/csv/CSVFormat.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ public final class CSVFormat implements Serializable {
153153
*
154154
* @since 1.2
155155
*/
156-
public static enum Predefined {
156+
public enum Predefined {
157157

158158
/**
159159
* @see CSVFormat#DEFAULT
@@ -194,7 +194,7 @@ public static enum Predefined {
194194

195195
private final CSVFormat format;
196196

197-
private Predefined(final CSVFormat format) {
197+
Predefined(final CSVFormat format) {
198198
this.format = format;
199199
}
200200

@@ -206,7 +206,7 @@ private Predefined(final CSVFormat format) {
206206
public CSVFormat getFormat() {
207207
return format;
208208
}
209-
};
209+
}
210210

211211
/**
212212
* Standard comma separated format, as for {@link #RFC4180} but allowing empty lines.

0 commit comments

Comments
 (0)