From fa16851a0485fe95c5a9f68f6c4267f2766abbe5 Mon Sep 17 00:00:00 2001 From: Mark Spruiell Date: Wed, 18 Sep 2002 20:59:35 +0000 Subject: clone is no longer optional --- java/ant/Slice2JavaTask.java | 17 ----------------- 1 file changed, 17 deletions(-) (limited to 'java/ant/Slice2JavaTask.java') diff --git a/java/ant/Slice2JavaTask.java b/java/ant/Slice2JavaTask.java index 289db179126..965c23e5c66 100644 --- a/java/ant/Slice2JavaTask.java +++ b/java/ant/Slice2JavaTask.java @@ -42,7 +42,6 @@ import java.io.BufferedWriter; * outputdir - The value for the --output-dir translator option. * package - The value for the --package translator option. * tie - The value for the --tie translator option. - * clone - The value for the --clone translator option. * casesensitive - The value for the --case-sensitive translator option. * * Nested elements: @@ -82,7 +81,6 @@ public class Slice2JavaTask extends org.apache.tools.ant.Task _package = null; _includePath = null; _tie = false; - _clone = false; _caseSensitive = false; } @@ -145,12 +143,6 @@ public class Slice2JavaTask extends org.apache.tools.ant.Task _tie = tie; } - public void - setClone(boolean c) - { - _clone = c; - } - public void setCaseSensitive(boolean c) { @@ -287,14 +279,6 @@ public class Slice2JavaTask extends org.apache.tools.ant.Task cmd.append(" --tie"); } - // - // Add --clone - // - if(_clone) - { - cmd.append(" --clone"); - } - // // Add --case-sensitive // @@ -417,7 +401,6 @@ public class Slice2JavaTask extends org.apache.tools.ant.Task private String _package; private Path _includePath; private boolean _tie; - private boolean _clone; private boolean _caseSensitive; private java.util.List _fileSets = new java.util.LinkedList(); } -- cgit v1.2.3