diff src/luan/modules/http/LuanHandler.java @ 781:fbbdd369a13a

rename DeepCloner to LuanCloner
author Franklin Schmidt <fschmidt@gmail.com>
date Mon, 29 Aug 2016 22:49:32 -0600
parents 1460d297e960
children 655280eab1e2
line wrap: on
line diff
--- a/src/luan/modules/http/LuanHandler.java	Mon Aug 29 21:47:19 2016 -0600
+++ b/src/luan/modules/http/LuanHandler.java	Mon Aug 29 22:49:32 2016 -0600
@@ -12,7 +12,7 @@
 import luan.LuanState;
 import luan.LuanTable;
 import luan.LuanFunction;
-import luan.DeepCloner;
+import luan.LuanCloner;
 import luan.LuanException;
 import luan.modules.PackageLuan;
 
@@ -70,7 +70,7 @@
 
 	public static Object callRpc(LuanState luan,String fnName,Object... args) throws LuanException {
 		synchronized(luan) {
-			DeepCloner cloner = new DeepCloner();
+			LuanCloner cloner = new LuanCloner();
 			luan = (LuanState)cloner.deepClone(luan);
 		}
 		LuanTable rpc = (LuanTable)PackageLuan.require(luan,"luan:Rpc.luan");