Skip to content

Commit 36ebfd0

Browse files
committed
removed unnecessary qualifier
1 parent 1972689 commit 36ebfd0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • java-bigquery/google-cloud-bigquery/src/main/java/com/google/cloud/bigquery/telemetry

java-bigquery/google-cloud-bigquery/src/main/java/com/google/cloud/bigquery/telemetry/ErrorTypeUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ static boolean isClientRequestError(Exception e) {
6060
static ErrorType getClientErrorType(Exception e) {
6161
if (isClientTimeout(e)) {
6262
return ErrorType.CLIENT_TIMEOUT;
63-
} else if (ErrorTypeUtil.isClientConnectionError(e)) {
63+
} else if (isClientConnectionError(e)) {
6464
return ErrorType.CLIENT_CONNECTION_ERROR;
6565
} else if (isClientResponseDecodeError(e)) {
6666
return ErrorType.CLIENT_RESPONSE_DECODE_ERROR;

0 commit comments

Comments
 (0)