Add comment

Change-Id: If21222aa678a827c1fcad5cacac0fa20655e4e5e
main
Kurt Partridge 2013-01-11 09:21:07 -08:00
parent 90aaa2d0a5
commit 0a292ad883
1 changed files with 5 additions and 0 deletions

View File

@ -838,6 +838,11 @@ public class ResearchLogger implements SharedPreferences.OnSharedPreferenceChang
mCurrentLogUnit = newLogUnit;
}
/**
* Record the time of a MotionEvent.ACTION_DOWN.
*
* Warning: Not thread safe. Only call from the main thread.
*/
private void setSavedDownEventTime(final long time) {
mSavedDownEventTime = time;
}