Fix unassigned value.

This commit is contained in:
wusheng 2017-07-20 23:18:44 +08:00
parent efbdb7450f
commit 4628ea6baa
1 changed files with 3 additions and 3 deletions

View File

@ -43,11 +43,11 @@ public class ID {
}
if (part == 0) {
part1 = part;
part1 = value;
} else if (part == 1) {
part2 = part;
part2 = value;
} else {
part3 = part;
part3 = value;
}
}