summaryrefslogtreecommitdiff
path: root/src/main
diff options
context:
space:
mode:
authorBrian S. O'Neill <bronee@gmail.com>2011-05-18 19:29:18 +0000
committerBrian S. O'Neill <bronee@gmail.com>2011-05-18 19:29:18 +0000
commitd3f2ae092966f33584702a1dbb0c6f00335a156e (patch)
tree675e5d02367ef1d6fdd10bc333932c786149cd1c /src/main
parent9fffba665e4a785cfeaddd038c8c8a302f216a1c (diff)
Add FIXME comment.
Diffstat (limited to 'src/main')
-rw-r--r--src/main/java/com/amazon/carbonado/repo/indexed/ManagedIndex.java7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/main/java/com/amazon/carbonado/repo/indexed/ManagedIndex.java b/src/main/java/com/amazon/carbonado/repo/indexed/ManagedIndex.java
index 1da57aa..4e99a06 100644
--- a/src/main/java/com/amazon/carbonado/repo/indexed/ManagedIndex.java
+++ b/src/main/java/com/amazon/carbonado/repo/indexed/ManagedIndex.java
@@ -660,15 +660,16 @@ class ManagedIndex<S extends Storable> implements IndexEntryAccessor<S> {
return true;
}
+ // FIXME: This code effectively does nothing and always returns false.
+
// If index entry already exists, then index might be corrupt.
try {
Storable freshEntry = mIndexEntryStorage.prepare();
mAccessor.copyFromMaster(freshEntry, userStorable);
indexEntry.copyVersionProperty(freshEntry);
if (freshEntry.equals(indexEntry)) {
- // Existing entry is exactly what we expect. Return false
- // exception if alternate key constraint, since this is
- // user error.
+ // Existing entry is exactly what we expect. Return false if
+ // alternate key constraint, since this is user error.
return !isUnique();
}
} catch (FetchException e) {