java-decompiler: minor optimization (no more empty array creation)

This commit is contained in:
Roman Shevchenko
2014-10-06 17:26:24 +02:00
parent 8462998a86
commit bef17b44fc
4 changed files with 10 additions and 6 deletions

View File

@@ -88,6 +88,7 @@ public class FastSparseSetFactory<E> {
public static class FastSparseSet<E> implements Iterable<E> {
public static final FastSparseSet[] EMPTY_ARRAY = new FastSparseSet[0];
private FastSparseSetFactory<E> factory;