Merging Source v1.7.2: item changes

This commit is contained in:
Evan Debenham
2014-10-21 00:38:15 -04:00
parent 4a49763309
commit 13afc9df8d
32 changed files with 523 additions and 269 deletions
@@ -36,13 +36,6 @@ public class Key extends Item {
return item.getClass() == getClass() && ((Key)item).depth == depth;
}
@Override
public Item detach( Bag container ) {
Key key = (Key)super.detach( container );
key.depth = depth;
return key;
}
private static final String DEPTH = "depth";
@Override
@@ -66,4 +59,10 @@ public class Key extends Item {
public boolean isIdentified() {
return true;
}
@Override
public String status() {
return depth + "*";
}
}