Skip to content

Commit

Permalink
Remove the useless local var.
Browse files Browse the repository at this point in the history
  • Loading branch information
dota17 committed Apr 30, 2020
1 parent 95d5984 commit a665e44
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,7 @@ public QueueDecoratorTest(String testName) {

@Override
public Collection<E> makeConfirmedCollection() {
final ArrayList<E> list = new ArrayList<>();
return list;
return new ArrayList<>();
}

@Override
Expand Down

0 comments on commit a665e44

Please sign in to comment.