summaryrefslogtreecommitdiff
path: root/java/ant/SliceMeta.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/ant/SliceMeta.java')
-rw-r--r--java/ant/SliceMeta.java25
1 files changed, 0 insertions, 25 deletions
diff --git a/java/ant/SliceMeta.java b/java/ant/SliceMeta.java
deleted file mode 100644
index 878dad75218..00000000000
--- a/java/ant/SliceMeta.java
+++ /dev/null
@@ -1,25 +0,0 @@
-// **********************************************************************
-//
-// Copyright (c) 2003-2008 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;
-}