diff --git a/src/java/com/samskivert/jdbc/depot/DepotRepository.java b/src/java/com/samskivert/jdbc/depot/DepotRepository.java index 63b6c3f..f099876 100644 --- a/src/java/com/samskivert/jdbc/depot/DepotRepository.java +++ b/src/java/com/samskivert/jdbc/depot/DepotRepository.java @@ -27,7 +27,6 @@ import java.sql.SQLException; import java.util.ArrayList; import java.util.Collection; -import java.util.HashMap; import java.util.Map; import com.samskivert.io.PersistenceException; @@ -204,7 +203,7 @@ public class DepotRepository * @return the number of rows modified by this action. */ protected int updatePartial (Class type, Comparable primaryKey, - HashMap updates) + Map updates) throws PersistenceException { Object[] fieldsValues = new Object[updates.size()*2];