Hi.
I use real.java at astronomical calculation. This is very usefull library thanks. I found error at StringBuffer not found method at ProGuard use by cldcapi11.jar.
I seem append(StringBuffer sb) not support on cldcapi11.jar.
I have changed as follow.
ftoaBuf.append(ftoaExp); -> ftoaBuf.append(ftoaExp.toString());
Regards.
Hiroki Mori
I have added the change as you suggested. It will be part of the next release.
Log in to post a comment.
Hi.
I use real.java at astronomical calculation. This is very usefull library thanks.
I found error at StringBuffer not found method at ProGuard use by cldcapi11.jar.
I seem append(StringBuffer sb) not support on cldcapi11.jar.
I have changed as follow.
ftoaBuf.append(ftoaExp); -> ftoaBuf.append(ftoaExp.toString());
Regards.
Hiroki Mori
I have added the change as you suggested.
It will be part of the next release.