Skip to content

Commit 44f41f2

Browse files
jpa468Android (Google) Code Review
authored andcommitted
Merge "Revert "unlock screen: enable DEBUG and track pattern start/cell progress."" into jb-dev
2 parents 2806097 + 3421c02 commit 44f41f2

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

policy/src/com/android/internal/policy/impl/PatternUnlockScreen.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
class PatternUnlockScreen extends LinearLayoutWithDefaultTouchRecepient
4242
implements KeyguardScreen {
4343

44-
private static final boolean DEBUG = true; /* TODO: revert before JB release */
44+
private static final boolean DEBUG = false;
4545
private static final String TAG = "UnlockScreen";
4646

4747
// how long before we clear the wrong pattern
@@ -321,7 +321,6 @@ private class UnlockPatternListener
321321
implements LockPatternView.OnPatternListener {
322322

323323
public void onPatternStart() {
324-
if (DEBUG) Log.d(TAG, "Got pattern start");
325324
mLockPatternView.removeCallbacks(mCancelPatternRunnable);
326325
}
327326

@@ -337,7 +336,6 @@ public void onPatternCellAdded(List<Cell> pattern) {
337336
// Give just a little extra time if they hit one of the first few dots
338337
mCallback.pokeWakelock(UNLOCK_PATTERN_WAKE_INTERVAL_FIRST_DOTS_MS);
339338
}
340-
if (DEBUG) Log.d(TAG, "Got pattern cell");
341339
}
342340

343341
public void onPatternDetected(List<LockPatternView.Cell> pattern) {

0 commit comments

Comments
 (0)