Skip to content

Commit 4ef0142

Browse files
committed
Polishing.
Removing final on local variable. See #1065 Original pull request #1085
1 parent 2fc35f4 commit 4ef0142

File tree

1 file changed

+1
-1
lines changed
  • spring-data-relational/src/main/java/org/springframework/data/relational/core/dialect

1 file changed

+1
-1
lines changed

spring-data-relational/src/main/java/org/springframework/data/relational/core/dialect/PostgresDialect.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ public IdentifierProcessing getIdentifierProcessing() {
216216
public Set<Class<?>> simpleTypes() {
217217

218218
Set<Class<?>> simpleTypes = new HashSet<>();
219-
final List<String> simpleTypeNames = Arrays.asList( //
219+
List<String> simpleTypeNames = Arrays.asList( //
220220
"org.postgresql.util.PGobject", //
221221
"org.postgresql.geometric.PGpoint", //
222222
"org.postgresql.geometric.PGbox", //

0 commit comments

Comments
 (0)