From 23b643426a0bac51342f49a0ec0f000ecc7544e0 Mon Sep 17 00:00:00 2001 From: Antonin Delpeuch Date: Mon, 23 Oct 2017 08:41:14 +0200 Subject: [PATCH] Fix Codacy warnings in MultiValuedCellSplitOperation --- .../refine/operations/cell/MultiValuedCellSplitOperation.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/main/src/com/google/refine/operations/cell/MultiValuedCellSplitOperation.java b/main/src/com/google/refine/operations/cell/MultiValuedCellSplitOperation.java index 9ef71f09c..6b009fb5b 100644 --- a/main/src/com/google/refine/operations/cell/MultiValuedCellSplitOperation.java +++ b/main/src/com/google/refine/operations/cell/MultiValuedCellSplitOperation.java @@ -33,7 +33,6 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. package com.google.refine.operations.cell; -import java.io.Serializable; import java.util.ArrayList; import java.util.List; import java.util.Properties; @@ -170,8 +169,6 @@ public class MultiValuedCellSplitOperation extends AbstractOperation { if("lengths".equals(_mode)) { //do split by lengths if (_fieldLengths.length >= 0 && _fieldLengths[0] > 0) { - Object o = _fieldLengths[0]; - values = new String[_fieldLengths.length]; int lastIndex = 0;