summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/core/src/data/MVDataEntry.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/core/src/data/MVDataEntry.java b/src/core/src/data/MVDataEntry.java
index f92a141..2d92030 100644
--- a/src/core/src/data/MVDataEntry.java
+++ b/src/core/src/data/MVDataEntry.java
@@ -43,9 +43,8 @@ public class MVDataEntry implements Comparable<MVDataEntry> {
/**
* The data part of this particular entry.
*/
- private HashMultimap<String,String> attrValPairs;
-
- // XXX : add an HashMap for meta or constraints ?
+ private HashMultimap<String,String> attrValPairs; //FIXME : memory inefficient
+ //XXX Consider https://commons.apache.org/proper/commons-collections/javadocs/api-3.2.1/org/apache/commons/collections/map/MultiValueMap.html
// Constructors