Skip to content

Commit bfa96fb

Browse files
Wink SavilleAndroid (Google) Code Review
authored andcommitted
Merge "Fix double DBG check." into lmp-dev
2 parents 3f55577 + 063b8d6 commit bfa96fb

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)