Skip to content

Commit bea7189

Browse files
committed
Merge branch 'master' of github.com:MarcMil/axml into nextrel
2 parents 92af4ae + 373efd5 commit bea7189

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pxb/android/axml/AxmlParser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ public String getNamespacePrefix() {
163163
}
164164

165165
public String getNamespaceUri() {
166-
if (nsIdx < 0 && nsIdx < strings.length) {
166+
if (nsIdx >= 0 && nsIdx < strings.length) {
167167
return strings[nsIdx];
168168
}
169169
return null;

0 commit comments

Comments
 (0)