Merge "Do not output string-encoded MotionEvent."

main
Kurt Partridge 2013-07-15 17:36:55 +00:00 committed by Android (Google) Code Review
commit 8bfd57820f
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));
}
}