diff --git a/src/java/com/samskivert/depot/DepotRepository.java b/src/java/com/samskivert/depot/DepotRepository.java index 67e154c..f09a070 100644 --- a/src/java/com/samskivert/depot/DepotRepository.java +++ b/src/java/com/samskivert/depot/DepotRepository.java @@ -532,7 +532,7 @@ public abstract class DepotRepository * @throws DatabaseException if any problem is encountered communicating with the database. */ protected int updatePartial ( - Key key, ColumnExp field, Comparable value, Object... fieldsValues) + Key key, ColumnExp field, Object value, Object... fieldsValues) throws DatabaseException { return updatePartial(key.getPersistentClass(), key, key, field, value, fieldsValues); @@ -618,7 +618,7 @@ public abstract class DepotRepository */ protected int updatePartial ( Class type, final WhereClause key, CacheInvalidator invalidator, - ColumnExp field, Comparable value, Object... fieldsValues) + ColumnExp field, Object value, Object... fieldsValues) throws DatabaseException { // separate the arguments into keys and values