File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/main/java/com/tvd12/ezyfoxserver/client/codec Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ android {
29
29
defaultConfig {
30
30
minSdkVersion 25
31
31
versionCode 1
32
- versionName " 1.0.2 "
32
+ versionName " 1.0.3 "
33
33
}
34
34
35
35
buildTypes {
Original file line number Diff line number Diff line change @@ -13,9 +13,9 @@ private MsgPackConstant() {
13
13
public static final long MAX_UINT32 = EzyMath .bin2long (32 );
14
14
15
15
public static final long MIN_NEGATIVE_FIXINT = -EzyMath .bin2int (5 ) - 1 ;
16
- public static final long MIN_INT8 = -EzyMath .bin2int (7 );
17
- public static final long MIN_INT16 = -EzyMath .bin2int (15 );
18
- public static final long MIN_INT32 = -EzyMath .bin2int (31 );
16
+ public static final long MIN_INT8 = -EzyMath .bin2int (7 ) - 1 ;
17
+ public static final long MIN_INT16 = -EzyMath .bin2int (15 ) - 1 ;
18
+ public static final long MIN_INT32 = -EzyMath .bin2int (31 ) - 1 ;
19
19
20
20
public static final int MAX_FIXMAP_SIZE = EzyMath .bin2int (4 );
21
21
public static final int MAX_FIXARRAY_SIZE = EzyMath .bin2int (4 );
You can’t perform that action at this time.
0 commit comments