fix: use proper array syntax

This commit is contained in:
Connor Tumbleson
2020-09-13 08:45:05 -04:00
parent 120c63df75
commit 943b424172

View File

@ -95,7 +95,7 @@ public class ResArrayValue extends ResBagValue implements
}
private final ResScalarValue[] mItems;
private final String AllowedArrayTypes[] = {"string", "integer"};
private final String[] AllowedArrayTypes = {"string", "integer"};
public static final int BAG_KEY_ARRAY_START = 0x02000000;
}