remove redundant FIRST_COLOR_INT

This commit is contained in:
REAndroid 2023-01-10 08:46:56 -05:00
parent 29ecb0653e
commit d18006c74b
2 changed files with 0 additions and 2 deletions

View File

@ -405,7 +405,6 @@ import java.util.regex.Pattern;
switch (valueType){ switch (valueType){
case INT_BOOLEAN: case INT_BOOLEAN:
return decodeBoolean(data); return decodeBoolean(data);
case FIRST_COLOR_INT:
case INT_COLOR_ARGB4: case INT_COLOR_ARGB4:
case INT_COLOR_ARGB8: case INT_COLOR_ARGB8:
case INT_COLOR_RGB4: case INT_COLOR_RGB4:

View File

@ -31,7 +31,6 @@ public enum ValueType {
INT_DEC((byte) 0x10), INT_DEC((byte) 0x10),
INT_HEX((byte) 0x11), INT_HEX((byte) 0x11),
INT_BOOLEAN((byte) 0x12), INT_BOOLEAN((byte) 0x12),
FIRST_COLOR_INT((byte) 0x1c),
INT_COLOR_ARGB8((byte) 0x1c), INT_COLOR_ARGB8((byte) 0x1c),
INT_COLOR_RGB8((byte) 0x1d), INT_COLOR_RGB8((byte) 0x1d),
INT_COLOR_ARGB4((byte) 0x1e), INT_COLOR_ARGB4((byte) 0x1e),