Remove unnecessary interfaces from PGHStore

The Serializable and Cloneable interfaces are already implemented by the
parent type PBobject.
This commit is contained in:
Brett Henderson
2023-05-14 22:26:21 +10:00
parent 05468d6ede
commit ca999a2082

View File

@ -21,8 +21,6 @@
*/
package org.openstreetmap.osmosis.hstore;
import java.io.Serializable;
import java.sql.SQLException;
import java.util.Set;
@ -39,7 +37,7 @@ import org.postgresql.util.PGobject;
/**
* This implements a class that handles the PostgreSQL contrib/hstore type
*/
public class PGHStore extends PGobject implements Serializable, Cloneable, Map<String, String>
public class PGHStore extends PGobject implements Map<String, String>
{
private final static long serialVersionUID = 1;
private Map<String, String> _map;