diff --git a/src/java/com/samskivert/jdbc/depot/DepotMarshaller.java b/src/java/com/samskivert/jdbc/depot/DepotMarshaller.java index fcde2b2..420b4e1 100644 --- a/src/java/com/samskivert/jdbc/depot/DepotMarshaller.java +++ b/src/java/com/samskivert/jdbc/depot/DepotMarshaller.java @@ -756,7 +756,7 @@ public class DepotMarshaller }); } - // now check if there are any @Table(uniqueConstraints) that need to be created + // now check if there are any @Entity(uniqueConstraints) that need to be created Set> uniqueIndices = new HashSet>(metaData.indexColumns.values()); // unique constraints are unordered and may be unnamed, so we view them only as column sets @@ -989,7 +989,7 @@ public class DepotMarshaller /** The indexes defined in @Entity annotations for this record. */ protected Map _indexes = new HashMap(); - /** The unique constraints defined in @Table annotations for this record. */ + /** The unique constraints defined in @Entity annotations for this record. */ protected Set> _uniqueConstraints = new HashSet>(); protected Map _fullTextIndexes = new HashMap();