Skip to content

Commit

Permalink
Merge branch 'master' of github.com:MarcMil/axml into nextrel
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcMil committed Nov 13, 2024
2 parents 92af4ae + 373efd5 commit bea7189
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pxb/android/axml/AxmlParser.java
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ public String getNamespacePrefix() {
}

public String getNamespaceUri() {
if (nsIdx < 0 && nsIdx < strings.length) {
if (nsIdx >= 0 && nsIdx < strings.length) {
return strings[nsIdx];
}
return null;
Expand Down

0 comments on commit bea7189

Please sign in to comment.