Skip to content

Commit

Permalink
Merge pull request #80 from BerryCol/master
Browse files Browse the repository at this point in the history
修改个小错误··
  • Loading branch information
fengjiachun authored Mar 3, 2019
2 parents 6b305ec + b0dfd6b commit 0becbce
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public enum SerializerType {
;

SerializerType(byte value) {
if (0x00 < value && value < 0x10) {
if (0x00 < value && value < 0x0f) {
this.value = value;
} else {
throw new IllegalArgumentException("Out of range(0x01 ~ 0x0f): " + value);
Expand Down

0 comments on commit 0becbce

Please sign in to comment.