diff options
author | Ludovic Pouzenc <ludovic@pouzenc.fr> | 2014-10-23 12:29:11 +0200 |
---|---|---|
committer | Ludovic Pouzenc <ludovic@pouzenc.fr> | 2015-04-14 07:44:58 +0200 |
commit | 2c1f4b89818e018b8677d1d621ab98194b259509 (patch) | |
tree | 5ee751151556d84ee780474fcfe57a788b222103 /src | |
parent | 2d9677e1f38455ca62a367a57d0a8ed265da7c94 (diff) | |
download | sssync-2c1f4b89818e018b8677d1d621ab98194b259509.tar.gz sssync-2c1f4b89818e018b8677d1d621ab98194b259509.tar.bz2 sssync-2c1f4b89818e018b8677d1d621ab98194b259509.zip |
Memory considerations in comments
Diffstat (limited to 'src')
-rw-r--r-- | src/core/src/data/MVDataEntry.java | 5 |
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 |