Skip to content

Commit

Permalink
Fixed codestyle check
Browse files Browse the repository at this point in the history
  • Loading branch information
bagipro committed Feb 27, 2024
1 parent 41adbe4 commit ef5576e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jadx-core/src/main/java/jadx/core/xmlgen/ProtoXMLParser.java
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ private String getAttributeFullName(XmlAttribute a) {
if (attrName.isEmpty()) {
// some optimization tools clear the name because the Android platform doesn't need it
int resId = a.getResourceId();
String str;
if (resId != 0 && (str = ValuesParser.getAndroidResMap().get(resId)) != null) {
String str = ValuesParser.getAndroidResMap().get(resId);
if (str != null) {
namespace = nsMap.get(ParserConstants.ANDROID_NS_URL);
// cut type before /
int typeEnd = str.indexOf('/');
Expand Down

0 comments on commit ef5576e

Please sign in to comment.