Skip to content
Snippets Groups Projects
Commit fe28a97f authored by Daniel Plagge's avatar Daniel Plagge
Browse files

refactoring: removed unused variable

parent f3d245ae
Branches
No related tags found
No related merge requests found
...@@ -41,12 +41,10 @@ public class TupleType { ...@@ -41,12 +41,10 @@ public class TupleType {
final List<Integer> lower = new ArrayList<Integer>(arity); final List<Integer> lower = new ArrayList<Integer>(arity);
final List<Integer> upper = new ArrayList<Integer>(arity); final List<Integer> upper = new ArrayList<Integer>(arity);
int i = 0;
for (final Type type : types) { for (final Type type : types) {
final IntegerIntervall atomRange = type.getInterval(); final IntegerIntervall atomRange = type.getInterval();
lower.add(atomRange.getLower()); lower.add(atomRange.getLower());
upper.add(atomRange.getUpper()); upper.add(atomRange.getUpper());
i++;
} }
this.lower = Collections.unmodifiableList(lower); this.lower = Collections.unmodifiableList(lower);
this.upper = Collections.unmodifiableList(upper); this.upper = Collections.unmodifiableList(upper);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment