mirror of
https://github.com/apache/commons-collections.git
synced 2025-02-11 04:26:03 +00:00
Inline useless single use local variable
This commit is contained in:
parent
97c5ac99f0
commit
248fcd7d8a
@ -41,8 +41,7 @@ public class IteratorIterableTest extends BulkTest {
|
||||
list.add(Integer.valueOf(0));
|
||||
list.add(Integer.valueOf(1));
|
||||
list.add(Integer.valueOf(2));
|
||||
final Iterator<Integer> iter = list.iterator();
|
||||
return iter;
|
||||
return list.iterator();
|
||||
}
|
||||
|
||||
@Test
|
||||
|
Loading…
x
Reference in New Issue
Block a user