diff options
author | Mark Spruiell <mes@zeroc.com> | 2002-09-18 20:59:35 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2002-09-18 20:59:35 +0000 |
commit | fa16851a0485fe95c5a9f68f6c4267f2766abbe5 (patch) | |
tree | 17eb131cafbe93867f8334a5e897ce3b771c66b9 /java/ant/Slice2JavaTask.java | |
parent | fix (diff) | |
download | ice-fa16851a0485fe95c5a9f68f6c4267f2766abbe5.tar.bz2 ice-fa16851a0485fe95c5a9f68f6c4267f2766abbe5.tar.xz ice-fa16851a0485fe95c5a9f68f6c4267f2766abbe5.zip |
clone is no longer optional
Diffstat (limited to 'java/ant/Slice2JavaTask.java')
-rw-r--r-- | java/ant/Slice2JavaTask.java | 17 |
1 files changed, 0 insertions, 17 deletions
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; } @@ -146,12 +144,6 @@ public class Slice2JavaTask extends org.apache.tools.ant.Task } public void - setClone(boolean c) - { - _clone = c; - } - - public void setCaseSensitive(boolean c) { _caseSensitive = c; @@ -288,14 +280,6 @@ public class Slice2JavaTask extends org.apache.tools.ant.Task } // - // Add --clone - // - if(_clone) - { - cmd.append(" --clone"); - } - - // // Add --case-sensitive // if(_caseSensitive) @@ -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(); } |