Skip to content
This repository was archived by the owner on Apr 7, 2026. It is now read-only.

Commit daa75d6

Browse files
authored
cleanup: removes unnecessary comments (#369)
Removes buganizer comments from recently created predicate classes. These URLs are not accessible externally.
1 parent a53d736 commit daa75d6

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

google-cloud-spanner/src/main/java/com/google/cloud/spanner/IsRetryableInternalError.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,8 @@ public class IsRetryableInternalError implements Predicate<Throwable> {
3333
public boolean apply(Throwable cause) {
3434
if (isInternalError(cause)) {
3535
if (cause.getMessage().contains(HTTP2_ERROR_MESSAGE)) {
36-
// See b/25451313.
3736
return true;
3837
} else if (cause.getMessage().contains(CONNECTION_CLOSED_ERROR_MESSAGE)) {
39-
// See b/27794742.
4038
return true;
4139
} else if (cause.getMessage().contains(EOS_ERROR_MESSAGE)) {
4240
return true;

0 commit comments

Comments
 (0)