Skip to content

Commit

Permalink
Replace java.rmi.server.UID with UUID.
Browse files Browse the repository at this point in the history
Closes #1635
  • Loading branch information
schauder committed Oct 10, 2023
1 parent 52d3163 commit 6887ca7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@
import java.net.InetAddress;
import java.net.URI;
import java.net.URL;
import java.rmi.server.UID;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.UUID;

import org.springframework.data.relational.core.sql.Functions;
import org.springframework.data.relational.core.sql.IdentifierProcessing;
Expand Down Expand Up @@ -51,7 +51,7 @@ public class PostgresDialect extends AbstractDialect {
*/
public static final PostgresDialect INSTANCE = new PostgresDialect();

private static final Set<Class<?>> POSTGRES_SIMPLE_TYPES = Set.of(UID.class, URL.class, URI.class, InetAddress.class,
private static final Set<Class<?>> POSTGRES_SIMPLE_TYPES = Set.of(UUID.class, URL.class, URI.class, InetAddress.class,
Map.class);

protected PostgresDialect() {}
Expand Down

0 comments on commit 6887ca7

Please sign in to comment.