Open GoogleCodeExporter opened 9 years ago
This ticket should be closed. There is nothing wrong with the library, the
problem was on my side.
Let this be a lesson to those who forget to add a break; in a switch/case
statement.
case 11:
this.mPrice = new BigDecimal(arg1.toString());
break; // FORGOT BREAK HERE
case 12:
this.mServerId = Integer.parseInt(arg1.toString());
break;
case 13:
case 11 (with BigDecimal) had no break, hence case12 was executed right after.
Headache end of a long day, sorry for the needless ticket ;S
Original comment by yer...@gmail.com
on 7 Jul 2014 at 4:46
Original issue reported on code.google.com by
yer...@gmail.com
on 7 Jul 2014 at 4:19