diff core/src/luan/impl/UpValue.java @ 194:08df375e2e5f

remove EnvGetter git-svn-id: https://luan-java.googlecode.com/svn/trunk@195 21e917c8-12df-6dd8-5cb6-c86387c605b9
author fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9>
date Wed, 02 Jul 2014 04:52:25 +0000
parents 3dcb0f9bee82
children c6bcb8859b93
line wrap: on
line diff
--- a/core/src/luan/impl/UpValue.java	Wed Jul 02 03:27:35 2014 +0000
+++ b/core/src/luan/impl/UpValue.java	Wed Jul 02 04:52:25 2014 +0000
@@ -83,13 +83,6 @@
 		}
 	}
 
-	static final class EnvGetter implements Getter {
-
-		public UpValue get(LuanStateImpl luan) throws LuanException {
-			return luan.getUpValue(this);
-		}
-	}
-
 	static final class ValueGetter implements Getter {
 		private final UpValue upValue;