diff core/src/luan/modules/TableLuan.java @ 411:23b99a5039b5

remove Luan.newTable()
author Franklin Schmidt <fschmidt@gmail.com>
date Wed, 29 Apr 2015 16:05:02 -0600
parents 7fd9f1b7b878
children ce8e19567911
line wrap: on
line diff
--- a/core/src/luan/modules/TableLuan.java	Wed Apr 29 15:38:15 2015 -0600
+++ b/core/src/luan/modules/TableLuan.java	Wed Apr 29 16:05:02 2015 -0600
@@ -81,7 +81,7 @@
 	}
 
 	public static LuanTable pack(Object... args) {
-		LuanTable tbl = Luan.newTable();
+		LuanTable tbl = new LuanTable();
 		boolean hasNull = false;
 		for( int i=0; i<args.length; i++ ) {
 			Object v = args[i];