comparison core/src/luan/LuanPropertyTable.java @ 363:17b02b56d806

fix LuanPropertyTable.asMap(); fix binary==binary;
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 16 Apr 2015 10:12:58 -0600
parents 1bce334a816b
children 1a464e090538
comparison
equal deleted inserted replaced
362:9dbf3433f70f 363:17b02b56d806
53 i.remove(); 53 i.remove();
54 } 54 }
55 }; 55 };
56 } 56 }
57 57
58 @Override public Map<Object,Object> asMap() {
59 Map<Object,Object> map = newMap();
60 for( Map.Entry<Object,Object> entry : this ) {
61 map.put(entry.getKey(),entry.getValue());
62 }
63 return map;
64 }
65
58 } 66 }