We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26c250d commit c160be0Copy full SHA for c160be0
src/main/java/com/reandroid/arsc/value/AttributeDataFormat.java
@@ -159,11 +159,11 @@ public static int sum(AttributeDataFormat[] typeValues){
159
}
160
161
public static AttributeDataFormat[] decodeValueTypes(int data){
162
- data &= 0xffff;
+ data &= 0xff;
163
if(data == 0){
164
return null;
165
166
- if(data == 0xffff){
+ if(data == 0xff){
167
return new AttributeDataFormat[]{AttributeDataFormat.ANY};
168
169
final int length = Integer.bitCount(data);
0 commit comments