summaryrefslogtreecommitdiff
path: root/src/jvm
diff options
context:
space:
mode:
authorRich Hickey <richhickey@gmail.com>2010-04-15 10:35:26 -0400
committerRich Hickey <richhickey@gmail.com>2010-04-15 10:35:26 -0400
commitba9b7924de3f5b785bcbe1ed6e8ca5bf0ca7ec3d (patch)
tree8861308c1a259505d87413471ff9cdf0959d643d /src/jvm
parenta9953ba5834ae714cf767e73478a1c3c216561ac (diff)
remove IDynamicType and type tags
Diffstat (limited to 'src/jvm')
-rw-r--r--src/jvm/clojure/lang/IDynamicType.java22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/jvm/clojure/lang/IDynamicType.java b/src/jvm/clojure/lang/IDynamicType.java
deleted file mode 100644
index 769bd7f6..00000000
--- a/src/jvm/clojure/lang/IDynamicType.java
+++ /dev/null
@@ -1,22 +0,0 @@
-/**
- * Copyright (c) Rich Hickey. All rights reserved.
- * The use and distribution terms for this software are covered by the
- * Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
- * which can be found in the file epl-v10.html at the root of this distribution.
- * By using this software in any fashion, you are agreeing to be bound by
- * the terms of this license.
- * You must not remove this notice, or any other, from this software.
- **/
-
-/* rich Oct 27, 2009 */
-
-package clojure.lang;
-
-public interface IDynamicType{
-
- Keyword getDynamicType();
-
- Object getDynamicField(Keyword k, Object notFound);
-
- IPersistentMap getExtensionMap();
-}