From c68aba2a4816295d6d4e91b3394d228374c2ecf8 Mon Sep 17 00:00:00 2001 From: Jesse Greenwald Date: Wed, 9 Mar 2011 09:48:52 -0800 Subject: Fixed ordering of Config.getSubsections(...) A standard HashSet was being used to store the list of subsections as they were being parsed. This was changed to use a LinkedHashSet so that iterating over the set would return values in the same order as they are listed in the config file. Change-Id: I4251f95b8fe0ad59b07ff563c9ebb468f996c37d --- org.eclipse.jgit/src/org/eclipse/jgit/lib/Config.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/lib/Config.java b/org.eclipse.jgit/src/org/eclipse/jgit/lib/Config.java index ce86dc20f9..77ab150c6d 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/lib/Config.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/lib/Config.java @@ -55,9 +55,9 @@ import java.text.MessageFormat; import java.util.AbstractSet; import java.util.ArrayList; import java.util.Collections; -import java.util.HashSet; import java.util.Iterator; import java.util.LinkedHashMap; +import java.util.LinkedHashSet; import java.util.List; import java.util.Map; import java.util.Set; @@ -1277,7 +1277,7 @@ public class Config { } public Set parse(Config cfg) { - final Set result = new HashSet(); + final Set result = new LinkedHashSet(); while (cfg != null) { for (final Entry e : cfg.state.get().entryList) { if (e.subsection != null && e.name == null -- cgit v1.2.3