We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e7771fd + bea7189 commit 70c75ebCopy full SHA for 70c75eb
pom.xml
@@ -5,7 +5,7 @@
5
<groupId>de.upb.cs.swt</groupId>
6
<artifactId>axml</artifactId>
7
<name>axml</name>
8
- <version>2.1.3</version>
+ <version>2.1.4</version>
9
<description>The axml components for reading binary Android XML files forked from a not further maintained
10
repository created by Bob Pan
11
</description>
@@ -205,4 +205,4 @@
205
</build>
206
</profile>
207
</profiles>
208
-</project>
+</project>
src/pxb/android/axml/AxmlParser.java
@@ -163,7 +163,7 @@ public String getNamespacePrefix() {
163
}
164
165
public String getNamespaceUri() {
166
- if (nsIdx < 0 && nsIdx >= strings.length) {
+ if (nsIdx >= 0 && nsIdx < strings.length) {
167
return strings[nsIdx];
168
169
return null;
0 commit comments