mirror of
https://github.com/openstreetmap/osmosis.git
synced 2026-01-14 00:36:36 +00:00
Remove unnecessary interfaces from PGHStore
The Serializable and Cloneable interfaces are already implemented by the parent type PBobject.
This commit is contained in:
@ -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;
|
||||
|
||||
Reference in New Issue
Block a user