Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarsten Hammer2020-09-05 08:34:01 +0000
committerJeff Johnston2020-09-18 20:43:59 +0000
commitca567ed03c2d618be91c865d88dca92a7d707489 (patch)
tree3bcaa6e05ea76b37c7d4617d9d119d9dc5308364
parent198a032db97f2b200f040da2563f3001882d6bce (diff)
downloadeclipse.jdt.core-ca567ed03c2d618be91c865d88dca92a7d707489.tar.gz
eclipse.jdt.core-ca567ed03c2d618be91c865d88dca92a7d707489.tar.xz
eclipse.jdt.core-ca567ed03c2d618be91c865d88dca92a7d707489.zip
Change-Id: I4070d594b9a47d7cba83b90fab353c6047a33a02 Signed-off-by: Carsten Hammer <carsten.hammer@t-online.de>
-rw-r--r--org.eclipse.jdt.core/formatter/org/eclipse/jdt/core/formatter/CodeFormatterApplication.java5
1 files changed, 0 insertions, 5 deletions
diff --git a/org.eclipse.jdt.core/formatter/org/eclipse/jdt/core/formatter/CodeFormatterApplication.java b/org.eclipse.jdt.core/formatter/org/eclipse/jdt/core/formatter/CodeFormatterApplication.java
index b1880d2534..7f24beb499 100644
--- a/org.eclipse.jdt.core/formatter/org/eclipse/jdt/core/formatter/CodeFormatterApplication.java
+++ b/org.eclipse.jdt.core/formatter/org/eclipse/jdt/core/formatter/CodeFormatterApplication.java
@@ -23,7 +23,6 @@ import java.io.FileInputStream;
import java.io.FileWriter;
import java.io.IOException;
import java.text.MessageFormat;
-import java.util.ArrayList;
import java.util.Map;
import java.util.Properties;
@@ -260,10 +259,6 @@ public class CodeFormatterApplication implements IApplication {
private File[] processCommandLine(String[] argsArray) {
- ArrayList args = new ArrayList();
- for (int i = 0, max = argsArray.length; i < max; i++) {
- args.add(argsArray[i]);
- }
int index = 0;
final int argCount = argsArray.length;

Back to the top