Skip to content

Commit e6e3322

Browse files
cco3Android Git Automerger
authored andcommitted
am 8fff780: Merge "Remove duplicate \'=\' in exception message"
* commit '8fff7805ab1ccde8321697116ed3dd2fae5340ed': Remove duplicate '=' in exception message
2 parents a6590e7 + 8fff780 commit e6e3322

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)