diff src/luan/modules/BasicLuan.java @ 1330:f41919741100

fix security
author Franklin Schmidt <fschmidt@gmail.com>
date Mon, 11 Feb 2019 01:38:55 -0700
parents 11d3640e739d
children 25746915a241
line wrap: on
line diff
--- a/src/luan/modules/BasicLuan.java	Sun Feb 10 02:01:49 2019 -0700
+++ b/src/luan/modules/BasicLuan.java	Mon Feb 11 01:38:55 2019 -0700
@@ -88,7 +88,7 @@
 		return table.rawGet(index);
 	}
 
-	public static void raw_set(LuanTable table,Object index,Object value) {
+	public static void raw_set(LuanTable table,Object index,Object value) throws LuanException {
 		table.rawPut(index,value);
 	}
 
@@ -240,4 +240,5 @@
 		return LuanToString.toString(obj,b);
 	}
 
+	private void BasicLuan() {}  // never
 }