Skip to content

Commit 8fff780

Browse files
cco3Android Code Review
authored andcommitted
Merge "Remove duplicate '=' in exception message"
2 parents 13b21e6 + c1a9b03 commit 8fff780

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

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

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -316,9 +316,10 @@ public Action getItem(int position) {
316316
filteredPos++;
317317
}
318318

319-
throw new IllegalArgumentException("position " + position + " out of "
320-
+ "range of showable actions, filtered count = "
321-
+ "= " + getCount() + ", keyguardshowing=" + mKeyguardShowing
319+
throw new IllegalArgumentException("position " + position
320+
+ " out of range of showable actions"
321+
+ ", filtered count=" + getCount()
322+
+ ", keyguardshowing=" + mKeyguardShowing
322323
+ ", provisioned=" + mDeviceProvisioned);
323324
}
324325

0 commit comments

Comments
 (0)