diff core/src/luan/LuanMeta.java @ 408:1b38de2b1845

merge LuanTableImpl into LuanTable
author Franklin Schmidt <fschmidt@gmail.com>
date Wed, 29 Apr 2015 13:15:17 -0600
parents 3e68917a0dc6
children 8937263f59f6
line wrap: on
line diff
--- a/core/src/luan/LuanMeta.java	Wed Apr 29 13:01:00 2015 -0600
+++ b/core/src/luan/LuanMeta.java	Wed Apr 29 13:15:17 2015 -0600
@@ -18,7 +18,7 @@
 	}
 
 	public LuanTable newMetatable() {
-		LuanTable mt = new LuanTableImpl();
+		LuanTable mt = new LuanTable();
 /*
 		try {
 			mt.put( "__index", new LuanJavaFunction(
@@ -41,7 +41,7 @@
 	}
 
 	public LuanTable newTable() {
-		LuanTable tbl = new LuanTableImpl();
+		LuanTable tbl = new LuanTable();
 		tbl.setMetatable( newMetatable() );
 		return tbl;
 	}