Skip to content

Commit 6d8d45d

Browse files
committed
chore: Fix lint issues
1 parent 92a89b7 commit 6d8d45d

File tree

2 files changed

+4
-12
lines changed

2 files changed

+4
-12
lines changed

oauth2_http/java/com/google/auth/oauth2/ExternalAccountCredentials.java

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1001,18 +1001,14 @@ public Builder setUniverseDomain(String universeDomain) {
10011001
return this;
10021002
}
10031003

1004-
/**
1005-
* Warning: Not for public use and can be removed at any time.
1006-
*/
1004+
/** Warning: Not for public use and can be removed at any time. */
10071005
@InternalApi
10081006
public Builder setConnectTimeout(int connectTimeout) {
10091007
this.connectTimeout = connectTimeout;
10101008
return this;
10111009
}
10121010

1013-
/**
1014-
* Warning: Not for public use and can be removed at any time.
1015-
*/
1011+
/** Warning: Not for public use and can be removed at any time. */
10161012
@InternalApi
10171013
public Builder setReadTimeout(int readTimeout) {
10181014
this.readTimeout = readTimeout;

oauth2_http/java/com/google/auth/oauth2/StsRequestHandler.java

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -237,18 +237,14 @@ public StsRequestHandler.Builder setInternalOptions(String internalOptions) {
237237
return this;
238238
}
239239

240-
/**
241-
* Warning: Not for public use and can be removed at any time.
242-
*/
240+
/** Warning: Not for public use and can be removed at any time. */
243241
@InternalApi
244242
public StsRequestHandler.Builder setConnectTimeout(int connectTimeout) {
245243
this.connectTimeout = connectTimeout;
246244
return this;
247245
}
248246

249-
/**
250-
* Warning: Not for public use and can be removed at any time.
251-
*/
247+
/** Warning: Not for public use and can be removed at any time. */
252248
@InternalApi
253249
public StsRequestHandler.Builder setReadTimeout(int readTimeout) {
254250
this.readTimeout = readTimeout;

0 commit comments

Comments
 (0)