fixed ambiguous naming of positionRelation() method
the bottom method now just returns the alpabetically sorted one and passes that as an argument to the other method which expects a sorted list of relations
This commit is contained in:
parent
d238c521ea
commit
ecd5a0b8fc
|
@ -59,7 +59,7 @@ public class AutoPositionAction extends AbstractAction {
|
||||||
0);
|
0);
|
||||||
if (choice == null) return;
|
if (choice == null) return;
|
||||||
if (choice.equals(choices[0])) {
|
if (choice.equals(choices[0])) {
|
||||||
positionRelation();
|
positionRelations(getAlphabeticRelationList());
|
||||||
} else if (choice.equals(choices[1])) {
|
} else if (choice.equals(choices[1])) {
|
||||||
JOptionPane.showConfirmDialog(
|
JOptionPane.showConfirmDialog(
|
||||||
null,
|
null,
|
||||||
|
@ -95,9 +95,9 @@ public class AutoPositionAction extends AbstractAction {
|
||||||
/**
|
/**
|
||||||
* Creates an orderList by grabbing all relations and sorting them
|
* Creates an orderList by grabbing all relations and sorting them
|
||||||
*/
|
*/
|
||||||
private void positionRelation() {
|
private ArrayList<Relation> getAlphabeticRelationList() {
|
||||||
ArrayList<Relation> relationList = new ArrayList<>(model.getRelations());
|
ArrayList<Relation> relationList = new ArrayList<>(model.getRelations());
|
||||||
Collections.sort(relationList);
|
Collections.sort(relationList);
|
||||||
positionRelations(relationList);
|
return relationList;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue