From 84ea54eb1e2c68091080951a3024cca98f70aca2 Mon Sep 17 00:00:00 2001 From: Roman Shevchenko Date: Fri, 29 Aug 2014 14:31:45 +0400 Subject: java-decompiler: post-import cleanup (code style issues) --- src/org/jetbrains/java/decompiler/util/FastSparseSetFactory.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/org/jetbrains/java/decompiler/util/FastSparseSetFactory.java') diff --git a/src/org/jetbrains/java/decompiler/util/FastSparseSetFactory.java b/src/org/jetbrains/java/decompiler/util/FastSparseSetFactory.java index 301a1ff..863dd72 100644 --- a/src/org/jetbrains/java/decompiler/util/FastSparseSetFactory.java +++ b/src/org/jetbrains/java/decompiler/util/FastSparseSetFactory.java @@ -122,9 +122,7 @@ public class FastSparseSetFactory { System.arraycopy(data, 0, cpdata, 0, arrlength); System.arraycopy(next, 0, cpnext, 0, arrlength); - FastSparseSet copy = new FastSparseSet(factory, cpdata, cpnext); - - return copy; + return new FastSparseSet(factory, cpdata, cpnext); } private int[] ensureCapacity(int index) { -- cgit v1.2.3