Skip to content

Commit

Permalink
minor: fix checkstyle violations for empty lines in enum
Browse files Browse the repository at this point in the history
  • Loading branch information
strkkk authored and vlsi committed Jan 27, 2022
1 parent 3af3b32 commit 417c9a2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions pgjdbc/src/main/java/org/postgresql/PGProperty.java
Original file line number Diff line number Diff line change
Expand Up @@ -781,6 +781,7 @@ public enum PGProperty {
}

private static final Map<String, PGProperty> PROPS_BY_NAME = new HashMap<String, PGProperty>();

static {
for (PGProperty prop : PGProperty.values()) {
if (PROPS_BY_NAME.put(prop.getName(), prop) != null) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ public enum ColumnsReturned {
NO();

final String[] columns;

ColumnsReturned(String... columns) {
this.columns = columns;
}
Expand Down

0 comments on commit 417c9a2

Please sign in to comment.