remove unnecessary super call

This commit is contained in:
Daniel Micay 2020-04-04 11:47:00 -04:00
parent 760d6f1186
commit 5524da3ad3
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ class GestureHelper {
public boolean onScaleBegin(ScaleGestureDetector detector) {
initialSpan = detector.getCurrentSpan();
prevNbStep = 0;
return super.onScaleBegin(detector);
return true;
}
@Override