diff src/luan/Lua.java @ 37:8a57ebfdfd78

add JavaLib git-svn-id: https://luan-java.googlecode.com/svn/trunk@38 21e917c8-12df-6dd8-5cb6-c86387c605b9
author fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9>
date Thu, 20 Dec 2012 02:36:07 +0000
parents 2a35154aec14
children e3624b7cd603
line wrap: on
line diff
--- a/src/luan/Lua.java	Tue Dec 18 09:53:42 2012 +0000
+++ b/src/luan/Lua.java	Thu Dec 20 02:36:07 2012 +0000
@@ -65,11 +65,4 @@
 		throw new LuaException( "attempt to call a " + type(obj) + " value" );
 	}
 
-	public static LuaTable getMetatable(Object obj) {
-		if( !(obj instanceof LuaTable) )
-			return null;
-		LuaTable table = (LuaTable)obj;
-		return table.getMetatable();
-	}
-
 }