Merge pull request #2798 from millmanorama/patch-2

fix bug I introduced in my cleanup
This commit is contained in:
Richard Cordovano 2017-05-12 11:22:21 -04:00 committed by GitHub
commit 321c13509d

View File

@ -463,7 +463,7 @@ public class DataResultViewerTable extends AbstractDataResultViewer {
if (noPreviousSettings) { if (noPreviousSettings) {
ArrayList<Integer> keys = new ArrayList<>(propertiesMap.keySet()); ArrayList<Integer> keys = new ArrayList<>(propertiesMap.keySet());
for (int key : keys) { for (int key : keys) {
propertiesMap.put(key - offset, propertiesMap.remove(key)); propertiesMap.put(key - props.size(), propertiesMap.remove(key));
} }
} }