diff core/src/luan/modules/JavaLuan.java @ 428:df95199ca4c0

rename __newindex to __new_index
author Franklin Schmidt <fschmidt@gmail.com>
date Sat, 02 May 2015 20:10:31 -0600
parents dae264ad6a7b
children c6bcb8859b93
line wrap: on
line diff
--- a/core/src/luan/modules/JavaLuan.java	Fri May 01 19:29:07 2015 -0600
+++ b/core/src/luan/modules/JavaLuan.java	Sat May 02 20:10:31 2015 -0600
@@ -142,7 +142,7 @@
 		}
 	}
 
-	public static void __newindex(LuanState luan,Object obj,Object key,Object value) throws LuanException {
+	public static void __new_index(LuanState luan,Object obj,Object key,Object value) throws LuanException {
 		checkJava(luan);
 		if( obj instanceof Static ) {
 			if( key instanceof String ) {