From 93dad1abbb0f2ef1af19a45ed94a707b1d9d55f0 Mon Sep 17 00:00:00 2001 From: mdb Date: Tue, 1 Apr 2008 21:40:11 +0000 Subject: [PATCH] Update comments. git-svn-id: https://samskivert.googlecode.com/svn/trunk@2287 6335cc39-0255-0410-8fd6-9bcaacd3b74c --- 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 fcde2b2e..420b4e10 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();