On Apr 21, 8:26 am, Michael Newton <[email protected]> wrote: > I fixed this - this code is where the problem is: > > int bits = getBitLength(); > bits = (((bits % 8) != 0) ? (bits += (bits % 8)) : bits); > > When I assigned the result of the expression in the second line to a > new variable instead of back to int bits, the problem went away. > > The clue was inhttp://code.google.com/p/android/issues/detail?id=2868 > - may be the same kind of issue.
Can you attach the failing and non-failing .class files to that bug? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

