Skip to content

Commit 063b8d6

Browse files
author
Wink Saville
committed
Fix double DBG check.
Change-Id: I45e175df698240b80374f98043b50a014fd9779a
1 parent 6d13bc8 commit 063b8d6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

telephony/java/android/telephony/PhoneStateListener.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ public PhoneStateListener(long subId, Looper looper) {
239239
mHandler = new Handler(looper) {
240240
public void handleMessage(Message msg) {
241241
if (DBG) {
242-
if (DBG) log("mSubId=" + mSubId + " what=0x" + Integer.toHexString(msg.what)
242+
log("mSubId=" + mSubId + " what=0x" + Integer.toHexString(msg.what)
243243
+ " msg=" + msg);
244244
}
245245
switch (msg.what) {

0 commit comments

Comments
 (0)