diff src/luan/LuanTable.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/LuanTable.java	Mon Aug 29 21:47:19 2016 -0600
+++ b/src/luan/LuanTable.java	Mon Aug 29 22:49:32 2016 -0600
@@ -13,7 +13,7 @@
 import java.util.HashSet;
 
 
-public final class LuanTable implements DeepCloneable {
+public final class LuanTable implements LuanCloneable {
 	private Map map = null;
 	private List list = null;
 	private LuanTable metatable = null;
@@ -59,7 +59,7 @@
 		return new LuanTable();
 	}
 
-	@Override public void deepenClone(DeepCloneable dc,DeepCloner cloner) {
+	@Override public void deepenClone(LuanCloneable dc,LuanCloner cloner) {
 		LuanTable clone = (LuanTable)dc;
 		if( map != null ) {
 			clone.map = newMap();