Skip to content

Commit

Permalink
Gardening - fix missing braces in javadoc.
Browse files Browse the repository at this point in the history
Change-Id: I6bcc47c1e5f81631dcbe9b2e813bb2da87aac707
Reviewed-on: https://review.couchbase.org/c/couchbase-jvm-clients/+/218881
Reviewed-by: David Nault <david.nault@couchbase.com>
Tested-by: Build Bot <build@couchbase.com>
  • Loading branch information
mikereiche committed Oct 31, 2024
1 parent 6c1fd23 commit d8c838f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
* Contains all the cluster capabilities this SDK supports (depending on the server version, the cluster may
* export more than these).
*
* @deprecated In favor of {@link com.couchbase.client.core.topology.ClusterCapability
* @deprecated In favor of {@link com.couchbase.client.core.topology.ClusterCapability}
*/
@Deprecated
public enum ClusterCapabilities {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import java.util.Objects;

/**
* @deprecated In favor of {@link com.couchbase.client.core.topology.TopologyRevision
* @deprecated In favor of {@link com.couchbase.client.core.topology.TopologyRevision}
*/
@Deprecated
@Stability.Internal
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
* Represents the partition information for a bucket.
*
* @since 1.1.0
* @deprecated In favor of {@link com.couchbase.client.core.topology.PartitionMap
* @deprecated In favor of {@link com.couchbase.client.core.topology.PartitionMap}
*/
@Deprecated
@JsonIgnoreProperties(ignoreUnknown = true)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
import static java.util.Objects.requireNonNull;

/**
* @deprecated In favor of {@link com.couchbase.client.core.topology.HostAndServicePorts
* @deprecated In favor of {@link com.couchbase.client.core.topology.HostAndServicePorts}
*/
@Deprecated
@JsonIgnoreProperties(ignoreUnknown = true)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ private Builder(String username, String password) {
}

/**
* @deprecated Please use {@link Builder(String, String) or {@link Builder(Supplier)} instead.
* @deprecated Please use {@link Builder(String, String)} or {@link Builder(Supplier)} instead.
*/
@Deprecated
public Builder() {
Expand Down

0 comments on commit d8c838f

Please sign in to comment.