Merge branch 'master' of https://github.com/skylot/jadx into issue_204

This commit is contained in:
unknown
2018-01-16 20:58:22 +03:00
@@ -168,10 +168,7 @@ public class ManifestAttributes {
return null;
}
if (attr.getType() == MAttrType.ENUM) {
String name = attr.getValues().get(value);
if (name != null) {
return name;
}
return attr.getValues().get(value);
} else if (attr.getType() == MAttrType.FLAG) {
StringBuilder sb = new StringBuilder();
for (Map.Entry<Long, String> entry : attr.getValues().entrySet()) {