@@ -85,7 +85,7 @@ public void reset() {
8585 final int start = this .mView .getTop ();
8686 final int end = getFixedTop ();
8787
88- Log .d (TAG , String .format ("reset: View %s reset to %d" , this .mView .getTag (), this .mRealIndex ));
88+ // Log.d(TAG, String.format("reset: View %s reset to %d", this.mView.getTag(), this.mRealIndex));
8989
9090 mRunningAnimator = ValueAnimator .ofFloat (0f , 1f ).setDuration (mOptions .CARD_RESET_DURATION );
9191 mRunningAnimator .addUpdateListener (new AnimatorUpdateListenerImpl (this , null , start , end , end ));
@@ -97,7 +97,7 @@ public void reset() {
9797 */
9898 private void checkIfAnimatorRunning () {
9999 if (isAnimating ()) {
100- Log .w (TAG , String .format ("checkIfAnimatorRunning: card #%d is animating!" , mRealIndex ));
100+ // Log.w(TAG, String.format("checkIfAnimatorRunning: card #%d is animating!", mRealIndex));
101101 mRunningAnimator .cancel ();
102102 }
103103 }
@@ -157,7 +157,7 @@ public void onSwap(final CardHolder dragging) {
157157
158158 mDrawOrderUpdated = false ;
159159
160- Log .d (TAG , "onSwap: start=" + start + ", mid=" + mid + ", end=" + end );
160+ // Log.d(TAG, "onSwap: start=" + start + ", mid=" + mid + ", end=" + end);
161161 mRunningAnimator = ValueAnimator .ofFloat (0f , 1f );
162162 mRunningAnimator .setDuration (mOptions .CARD_SWAP_DURATION );
163163 mRunningAnimator .addUpdateListener (new AnimatorUpdateListenerImpl (this , dragging , start , mid , end ));
0 commit comments