diff --git a/core/java/com/android/internal/inputmethod/RemoteAccessibilityInputConnection.java b/core/java/com/android/internal/inputmethod/RemoteAccessibilityInputConnection.java index b2ab819eb8a59..0ee8ee7fb4c72 100644 --- a/core/java/com/android/internal/inputmethod/RemoteAccessibilityInputConnection.java +++ b/core/java/com/android/internal/inputmethod/RemoteAccessibilityInputConnection.java @@ -115,14 +115,6 @@ public final class RemoteAccessibilityInputConnection { @AnyThread public SurroundingText getSurroundingText( @IntRange(from = 0) int beforeLength, @IntRange(from = 0) int afterLength, int flags) { - if (beforeLength < 0) { - throw new IllegalArgumentException("beforeLength cannot be negative but was " - + beforeLength); - } - if (afterLength < 0) { - throw new IllegalArgumentException("afterLength cannot be negative but was " - + afterLength); - } if (mCancellationGroup.isCanceled()) { return null; }