Skip to content
Snippets Groups Projects
Commit 3a1b9888 authored by Stefan E. Funk's avatar Stefan E. Funk
Browse files

fixed refatcored bug :-D ListSets is fast again!

parent 6622e0b7
No related branches found
No related tags found
No related merge requests found
......@@ -97,18 +97,18 @@ public class SetDeliverer {
this.setSet.put(projectID, projectName);
// System.out.println(meth + "projectID: " + projectSetSpec);
Iterator it = setSet.entrySet().iterator();
while (it.hasNext()) {
Map.Entry pair = (Map.Entry) it.next();
SetType set = new SetType();
set.setSetName(pair.getValue().toString());
set.setSetSpec("project:" + pair.getKey().toString());
setList.getSet().add(set);
}
}
}
Iterator it = setSet.entrySet().iterator();
while (it.hasNext()) {
Map.Entry pair = (Map.Entry) it.next();
SetType set = new SetType();
set.setSetName(pair.getValue().toString());
set.setSetSpec("project:" + pair.getKey().toString());
setList.getSet().add(set);
}
if (this.dariah == true) {
for (String identifierSetSpec : this.identifier) {
String id = identifierSetSpec;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment