diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2015-03-30 12:26:49 -0230 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2015-03-30 12:26:49 -0230 |
commit | c230cca9774d35ecc341f96a12db98cb2b61a0ce (patch) | |
tree | b25416cd2961fe46148ec33d672b42466194b160 /java/src/ant-ice/SliceMeta.java | |
parent | Remove vsaddin (diff) | |
download | ice-c230cca9774d35ecc341f96a12db98cb2b61a0ce.tar.bz2 ice-c230cca9774d35ecc341f96a12db98cb2b61a0ce.tar.xz ice-c230cca9774d35ecc341f96a12db98cb2b61a0ce.zip |
Moved ant task to its own repository
Diffstat (limited to 'java/src/ant-ice/SliceMeta.java')
-rw-r--r-- | java/src/ant-ice/SliceMeta.java | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/java/src/ant-ice/SliceMeta.java b/java/src/ant-ice/SliceMeta.java deleted file mode 100644 index 665938159aa..00000000000 --- a/java/src/ant-ice/SliceMeta.java +++ /dev/null @@ -1,25 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -public class SliceMeta -{ - public void - setValue(String value) - { - _value = value; - } - - public String - getValue() - { - return _value; - } - - private String _value; -} |