Skip to content

Commit

Permalink
cleanup: remove print statement
Browse files Browse the repository at this point in the history
Signed-off-by: Mathias-Boulay <[email protected]>
  • Loading branch information
Mathias-Boulay committed May 20, 2024
1 parent 7d34773 commit 2ca6fa6
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@ public boolean onTouchEvent(MotionEvent e){

//A worthy tap happened
mCurrentTapNumber += 1;
System.out.println("TapDetector: Tap detected: " + mCurrentTapNumber + " / " + mTapNumberToDetect + "; X: " +eventX + "; Y: " + eventY + "; Delta: " + (deltaX*deltaX + deltaY*deltaY) + "/"+ TAP_SLOP_SQUARE_PX );
if(mCurrentTapNumber >= mTapNumberToDetect){
resetTapDetectionState();
return true;
Expand Down

0 comments on commit 2ca6fa6

Please sign in to comment.