summaryrefslogtreecommitdiff
path: root/src/jvm/clojure
diff options
context:
space:
mode:
authorRich Hickey <richhickey@gmail.com>2006-06-11 21:10:13 +0000
committerRich Hickey <richhickey@gmail.com>2006-06-11 21:10:13 +0000
commit01820bfb5829d8be3bdafdf8fae8046f339a0949 (patch)
tree258bb3aed2739c226432f697f642d3dcada91e29 /src/jvm/clojure
parent48bd0825f45f2255d851ba0f3236a454f6178ae0 (diff)
got rid of AGenerator
Diffstat (limited to 'src/jvm/clojure')
-rw-r--r--src/jvm/clojure/lang/AGenerator.java25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/jvm/clojure/lang/AGenerator.java b/src/jvm/clojure/lang/AGenerator.java
deleted file mode 100644
index 455aa738..00000000
--- a/src/jvm/clojure/lang/AGenerator.java
+++ /dev/null
@@ -1,25 +0,0 @@
-/**
- * Copyright (c) Rich Hickey. All rights reserved.
- * The use and distribution terms for this software are covered by the
- * Common Public License 1.0 (http://opensource.org/licenses/cpl.php)
- * which can be found in the file CPL.TXT 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 Apr 3, 2006 */
-
-package clojure.lang;
-
-public abstract class AGenerator implements Iter{
-
-Object __val;
-int __state = 0;
-
-public Object get()
- {
- return __val;
- }
-
-}