Skip to content
This repository has been archived by the owner on Sep 26, 2023. It is now read-only.

fix: fix grammar in StubSetting comment #1397

Merged
merged 1 commit into from
Jun 8, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions gax/src/main/java/com/google/api/gax/rpc/StubSettings.java
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public abstract class StubSettings<SettingsT extends StubSettings<SettingsT>> {
/**
* Indicate when creating transport whether it is allowed to use mTLS endpoint instead of the
* default endpoint. Only the endpoint set by client libraries is allowed. User provided endpoint
* should always be used as it is. Client libraries can set it via {@link
* should always be used as it is. Client libraries can set it via the {@link
* Builder#setSwitchToMtlsEndpointAllowed} method.
*/
private final boolean switchToMtlsEndpointAllowed;
Expand Down Expand Up @@ -205,7 +205,7 @@ public abstract static class Builder<
/**
* Indicate when creating transport whether it is allowed to use mTLS endpoint instead of the
* default endpoint. Only the endpoint set by client libraries is allowed. User provided
* endpoint should always be used as it is. Client libraries can set it via {@link
* endpoint should always be used as it is. Client libraries can set it via the {@link
* Builder#setSwitchToMtlsEndpointAllowed} method.
*/
private boolean switchToMtlsEndpointAllowed = false;
Expand Down