Open GoogleCodeExporter opened 8 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
The project is migrating to github. If you believe this issue is still valid
and should be tracked please file a new issue at
https://github.com/simpligility/ksoap2-android/issues
Original comment by mosa...@gmail.com
on 7 Aug 2015 at 5:35
Original issue reported on code.google.com by
yer...@gmail.com
on 7 Jul 2014 at 4:19