ResValueFactory: removed special case for "id" type.

This commit is contained in:
Ryszard Wiśniewski 2010-03-13 12:05:23 +01:00
parent 99ec06d40c
commit 510c19c78a

View File

@ -79,9 +79,6 @@ public class ResValueFactory {
public ResValue factory(JniEntry entry)
throws AndrolibException {
if ("id".equals(entry.type)) {
return new ResIdValue();
}
switch (entry.valueType) {
case TYPE_BAG:
return bagFactory(entry);