Skip to content

Commit

Permalink
Apply spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
melontini committed May 9, 2024
1 parent d278b7c commit 4453bdd
Showing 1 changed file with 6 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@ public boolean isEmpty() {
return size() == 0;
}

@NotNull
@Override
@NotNull @Override
public ListIterator<EvaluationValue> listIterator(int index) {
return new ArrayIterator(size, index) {
@Override
Expand All @@ -48,20 +47,17 @@ public boolean contains(Object o) {
throw new IllegalStateException();
}

@NotNull
@Override
@NotNull @Override
public Iterator<EvaluationValue> iterator() {
return listIterator();
}

@NotNull
@Override
@NotNull @Override
public Object[] toArray() {
throw new IllegalStateException();
}

@NotNull
@Override
@NotNull @Override
public <T> T[] toArray(@NotNull T[] a) {
throw new IllegalStateException();
}
Expand Down Expand Up @@ -131,14 +127,12 @@ public int lastIndexOf(Object o) {
throw new IllegalStateException();
}

@NotNull
@Override
@NotNull @Override
public ListIterator<EvaluationValue> listIterator() {
return listIterator(0);
}

@NotNull
@Override
@NotNull @Override
public List<EvaluationValue> subList(int fromIndex, int toIndex) {
throw new IllegalStateException();
}
Expand Down

0 comments on commit 4453bdd

Please sign in to comment.