diff src/luan/modules/TableLuan.java @ 1166:7ef40e1923b7

add back Thread.global allow metatables to have metatables
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 08 Feb 2018 02:22:51 -0700
parents ad6b3b9fef40
children 9fa8b8389578
line wrap: on
line diff
--- a/src/luan/modules/TableLuan.java	Wed Feb 07 23:16:12 2018 -0700
+++ b/src/luan/modules/TableLuan.java	Thu Feb 08 02:22:51 2018 -0700
@@ -56,7 +56,7 @@
 			lt = new LessThan() {
 				public boolean isLessThan(Object o1,Object o2) {
 					try {
-						return Luan.isLessThan(luan,o1,o2);
+						return luan.isLessThan(o1,o2);
 					} catch(LuanException e) {
 						throw new LuanRuntimeException(e);
 					}