From 6e532a2b37ce45cb9067fa37e832f8deec9748e2 Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Tue, 1 Apr 2008 21:40:11 +0000 Subject: [PATCH] Update comments. --- src/java/com/samskivert/jdbc/depot/DepotMarshaller.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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();