I recently stumbled upon this very strange error that causes a crash while developing the application. Here is a screenshot of logcat:

And here is the code for the function that supposedly crashes:
private static long Round(double d)
{
return Math.round(d * 1000.0);
}
What can be done here? Should I report this issue?
EDIT: This may be related to the infinite recursion problem that I had because the problem seems to be gone ...
source
share