diff core/src/luan/LuanPropertyTable.java @ 355:1bce334a816b

AbstractLuanTable now implements LuanRepr
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 14 Apr 2015 09:33:34 -0600
parents 392105b660d7
children 17b02b56d806
line wrap: on
line diff
--- a/core/src/luan/LuanPropertyTable.java	Tue Apr 14 05:44:06 2015 -0600
+++ b/core/src/luan/LuanPropertyTable.java	Tue Apr 14 09:33:34 2015 -0600
@@ -16,7 +16,7 @@
 		return obj instanceof LuanProperty ? ((LuanProperty)obj).get() : obj;
 	}
 
-	@Override String repr(Set<LuanTableImpl> set,Object obj) {
+	@Override String repr(Set<AbstractLuanTable> set,Object obj) {
 		return super.repr(set,fixValue(obj));
 	}