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

rename DeepCloner to LuanCloner
author Franklin Schmidt <fschmidt@gmail.com>
date Mon, 29 Aug 2016 22:49:32 -0600
parents 1a68fc55a80c
children 655280eab1e2
line wrap: on
line diff
--- a/src/luan/modules/http/HttpServicer.java	Mon Aug 29 21:47:19 2016 -0600
+++ b/src/luan/modules/http/HttpServicer.java	Mon Aug 29 22:49:32 2016 -0600
@@ -30,7 +30,7 @@
 import luan.LuanTable;
 import luan.LuanMeta;
 import luan.LuanPropertyMeta;
-import luan.DeepCloner;
+import luan.LuanCloner;
 import luan.modules.PackageLuan;
 import luan.modules.IoLuan;
 import luan.modules.TableLuan;
@@ -59,13 +59,13 @@
 				if( sessionLuan!=null ) {
 					luan = sessionLuan;
 				} else {
-					DeepCloner cloner = new DeepCloner();
+					LuanCloner cloner = new LuanCloner();
 					luan = (LuanState)cloner.deepClone(luan);
 					session.setAttribute("luan",luan);
 				}
 				fn = (LuanFunction)PackageLuan.require(luan,modName);
 			} else {
-				DeepCloner cloner = new DeepCloner();
+				LuanCloner cloner = new LuanCloner();
 				luan = (LuanState)cloner.deepClone(luan);
 				fn = (LuanFunction)cloner.get(mod);
 			}