diff core/src/luan/modules/TableLuan.java @ 415:ce8e19567911

make LuanPropertyMeta a singleton
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 30 Apr 2015 06:04:17 -0600
parents 23b99a5039b5
children 0a2fb80907f9
line wrap: on
line diff
--- a/core/src/luan/modules/TableLuan.java	Wed Apr 29 19:06:18 2015 -0600
+++ b/core/src/luan/modules/TableLuan.java	Thu Apr 30 06:04:17 2015 -0600
@@ -116,6 +116,6 @@
 	}
 
 	public static LuanTable new_property_table() {
-		return LuanPropertyMeta.newInstance().newTable();
+		return LuanPropertyMeta.INSTANCE.newTable();
 	}
 }