am 8bfd5782: Merge "Do not output string-encoded MotionEvent."

* commit '8bfd57820f840d82dafad33c1d2f44c54f461fc1':
  Do not output string-encoded MotionEvent.
main
Kurt Partridge 2013-07-15 10:38:59 -07:00 committed by Android Git Automerger
commit 83196d0b57
1 changed files with 1 additions and 1 deletions

View File

@ -1760,7 +1760,7 @@ public class ResearchLogger implements SharedPreferences.OnSharedPreferenceChang
public static void suddenJumpingTouchEventHandler_onTouchEvent(final MotionEvent me) {
if (me != null) {
getInstance().enqueueEvent(LOGSTATEMENT_SUDDENJUMPINGTOUCHEVENTHANDLER_ONTOUCHEVENT,
me.toString());
MotionEvent.obtain(me));
}
}