diff core/src/luan/LuanPropertyTable.java @ 364:1a464e090538 0.3

simplify table code
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 16 Apr 2015 11:51:21 -0600
parents 17b02b56d806
children 2af805677fc4
line wrap: on
line diff
--- a/core/src/luan/LuanPropertyTable.java	Thu Apr 16 10:12:58 2015 -0600
+++ b/core/src/luan/LuanPropertyTable.java	Thu Apr 16 11:51:21 2015 -0600
@@ -55,12 +55,4 @@
 		};
 	}
 
-	@Override public Map<Object,Object> asMap() {
-		Map<Object,Object> map = newMap();
-		for( Map.Entry<Object,Object> entry : this ) {
-			map.put(entry.getKey(),entry.getValue());
-		}
-		return map;
-	}
-
 }