Merge "Fix testGetSurroundingTextFailWithNegative{Before,After}LengthForA11y" into tm-dev

This commit is contained in:
TreeHugger Robot
2022-04-22 03:35:35 +00:00
committed by Android (Google) Code Review

View File

@@ -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;
}