Skip to content

Commit 81dc636

Browse files
committed
Fix javadoc links to no-arg methods.
1 parent 7fd534f commit 81dc636

6 files changed

Lines changed: 16 additions & 16 deletions

File tree

manual/async/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,6 @@ There are still a few places where the driver will block internally
157157
hasn't been fetched already.
158158

159159
[ListenableFuture]: https://code.google.com/p/guava-libraries/wiki/ListenableFutureExplained
160-
[init]: http://docs.datastax.com/en/drivers/java/2.1/com/datastax/driver/core/Cluster.html#init()
160+
[init]: http://docs.datastax.com/en/drivers/java/2.1/com/datastax/driver/core/Cluster.html#init--
161161
[setPoolTimeoutMillis]: http://docs.datastax.com/en/drivers/java/2.1/com/datastax/driver/core/PoolingOptions.html#setPoolTimeoutMillis(int)
162162
[query trace]: http://docs.datastax.com/en/drivers/java/2.1/com/datastax/driver/core/QueryTrace.html

manual/metadata/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ The driver maintains global information about the Cassandra cluster it
44
is connected to. It is available via
55
[Cluster#getMetadata()][getMetadata].
66

7-
[getMetadata]: http://docs.datastax.com/en/drivers/java/2.1/com/datastax/driver/core/Cluster.html#getMetadata()
7+
[getMetadata]: http://docs.datastax.com/en/drivers/java/2.1/com/datastax/driver/core/Cluster.html#getMetadata--
88

99
### Schema metadata
1010

@@ -13,7 +13,7 @@ to get keyspace-level metadata. From there you can access the keyspace's
1313
objects (tables, and UDTs and UDFs if relevant).
1414

1515
[getKeyspace]: http://docs.datastax.com/en/drivers/java/2.1/com/datastax/driver/core/Metadata.html#getKeyspace(java.lang.String)
16-
[getKeyspaces]: http://docs.datastax.com/en/drivers/java/2.1/com/datastax/driver/core/Metadata.html#getKeyspaces()
16+
[getKeyspaces]: http://docs.datastax.com/en/drivers/java/2.1/com/datastax/driver/core/Metadata.html#getKeyspaces--
1717

1818
#### Refreshes
1919

@@ -136,8 +136,8 @@ custom executor).
136136
Check out the API docs for the features in this section:
137137

138138
* [withMaxSchemaAgreementWaitSeconds(int)](http://docs.datastax.com/en/drivers/java/2.1/com/datastax/driver/core/Cluster.Builder.html#withMaxSchemaAgreementWaitSeconds(int))
139-
* [isSchemaInAgreement()](http://docs.datastax.com/en/drivers/java/2.1/com/datastax/driver/core/ExecutionInfo.html#isSchemaInAgreement())
140-
* [checkSchemaAgreement()](http://docs.datastax.com/en/drivers/java/2.1/com/datastax/driver/core/Metadata.html#checkSchemaAgreement())
139+
* [isSchemaInAgreement()](http://docs.datastax.com/en/drivers/java/2.1/com/datastax/driver/core/ExecutionInfo.html#isSchemaInAgreement--)
140+
* [checkSchemaAgreement()](http://docs.datastax.com/en/drivers/java/2.1/com/datastax/driver/core/Metadata.html#checkSchemaAgreement--)
141141

142142

143143
### Token metadata
@@ -182,13 +182,13 @@ table (see
182182
[CASSANDRA-7688](https://issues.apache.org/jira/browse/CASSANDRA-7688)).
183183

184184
[metadata]: http://docs.datastax.com/en/drivers/java/2.1/com/datastax/driver/core/Metadata.html
185-
[getTokenRanges]: http://docs.datastax.com/en/drivers/java/2.1/com/datastax/driver/core/Metadata.html#getTokenRanges()
185+
[getTokenRanges]: http://docs.datastax.com/en/drivers/java/2.1/com/datastax/driver/core/Metadata.html#getTokenRanges--
186186
[getTokenRanges2]: http://docs.datastax.com/en/drivers/java/2.1/com/datastax/driver/core/Metadata.html#getTokenRanges(java.lang.String,%20com.datastax.driver.core.Host)
187187
[getReplicas]: http://docs.datastax.com/en/drivers/java/2.1/com/datastax/driver/core/Metadata.html#getReplicas(java.lang.String,%20com.datastax.driver.core.TokenRange)
188188
[newToken]: http://docs.datastax.com/en/drivers/java/2.1/com/datastax/driver/core/Metadata.html#newToken(java.lang.String)
189189
[newTokenRange]: http://docs.datastax.com/en/drivers/java/2.1/com/datastax/driver/core/Metadata.html#newTokenRange(com.datastax.driver.core.Token,%20com.datastax.driver.core.Token)
190190
[TokenRange]: http://docs.datastax.com/en/drivers/java/2.1/com/datastax/driver/core/TokenRange.html
191-
[getTokens]: http://docs.datastax.com/en/drivers/java/2.1/com/datastax/driver/core/Host.html#getTokens()
191+
[getTokens]: http://docs.datastax.com/en/drivers/java/2.1/com/datastax/driver/core/Host.html#getTokens--
192192
[setToken]: http://docs.datastax.com/en/drivers/java/2.1/com/datastax/driver/core/BoundStatement.html#setToken(int,%20com.datastax.driver.core.Token)
193193
[getToken]: http://docs.datastax.com/en/drivers/java/2.1/com/datastax/driver/core/Row.html#getToken(int)
194-
[getPKToken]: http://docs.datastax.com/en/drivers/java/2.1/com/datastax/driver/core/Row.html#getPartitionKeyToken()
194+
[getPKToken]: http://docs.datastax.com/en/drivers/java/2.1/com/datastax/driver/core/Row.html#getPartitionKeyToken--

manual/native_protocol/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ All host(s) tried for query failed
5858
[/127.0.0.1:9042] Host /127.0.0.1:9042 does not support protocol version V3 but V2))
5959
```
6060

61-
[gpve]: http://docs.datastax.com/en/drivers/java/2.1/com/datastax/driver/core/ProtocolOptions.html#getProtocolVersionEnum()
61+
[gpve]: http://docs.datastax.com/en/drivers/java/2.1/com/datastax/driver/core/ProtocolOptions.html#getProtocolVersionEnum--
6262

6363
#### Protocol version with mixed clusters
6464

manual/paging/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ There are two situations where you might want to use the unsafe API:
219219
implementing your own validation logic (for example, signing the raw
220220
state with a private key).
221221

222-
[gpsu]: http://www.datastax.com/drivers/java/2.1/com/datastax/driver/core/ExecutionInfo.html#getPagingStateUnsafe()
222+
[gpsu]: http://www.datastax.com/drivers/java/2.1/com/datastax/driver/core/ExecutionInfo.html#getPagingStateUnsafe--
223223
[spsu]: http://www.datastax.com/drivers/java/2.1/com/datastax/driver/core/Statement.html#setPagingStateUnsafe(byte[])
224224

225225

manual/pooling/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -283,8 +283,8 @@ either:
283283
[nct]:http://docs.datastax.com/en/drivers/java/2.1/com/datastax/driver/core/PoolingOptions.html#setNewConnectionThreshold(com.datastax.driver.core.HostDistance,%20int)
284284
[mrpc]: http://docs.datastax.com/en/drivers/java/2.1/com/datastax/driver/core/PoolingOptions.html#setMaxRequestsPerConnection(com.datastax.driver.core.HostDistance,%20int)
285285
[sits]: http://docs.datastax.com/en/drivers/java/2.1/com/datastax/driver/core/PoolingOptions.html#setIdleTimeoutSeconds(int)
286-
[rtm]:http://docs.datastax.com/en/drivers/java/2.1/com/datastax/driver/core/SocketOptions.html#getReadTimeoutMillis()
286+
[rtm]:http://docs.datastax.com/en/drivers/java/2.1/com/datastax/driver/core/SocketOptions.html#getReadTimeoutMillis--
287287
[exec_async]:http://docs.datastax.com/en/drivers/java/2.1/com/datastax/driver/core/Session.html#executeAsync(com.datastax.driver.core.Statement)
288288
[ptm]:http://docs.datastax.com/en/drivers/java/2.1/com/datastax/driver/core/PoolingOptions.html#setPoolTimeoutMillis(int)
289289
[nhae]:http://docs.datastax.com/en/drivers/java/2.1/com/datastax/driver/core/exceptions/NoHostAvailableException.html
290-
[get_state]:http://docs.datastax.com/en/drivers/java/2.1/com/datastax/driver/core/Session.html#getState()
290+
[get_state]:http://docs.datastax.com/en/drivers/java/2.1/com/datastax/driver/core/Session.html#getState--

manual/speculative_execution/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ default cluster-wide:
108108
cluster.getConfiguration().getQueryOptions().setDefaultIdempotence(true);
109109
```
110110

111-
[isIdempotent]: http://docs.datastax.com/en/drivers/java/2.1/com/datastax/driver/core/Statement.html#isIdempotent()
111+
[isIdempotent]: http://docs.datastax.com/en/drivers/java/2.1/com/datastax/driver/core/Statement.html#isIdempotent--
112112
[QueryBuilder]: http://docs.datastax.com/en/drivers/java/2.1/com/datastax/driver/core/querybuilder/QueryBuilder.html
113113

114114
### Enabling speculative executions
@@ -278,8 +278,8 @@ You can monitor how many speculative executions were triggered with the
278278
It should only be a few percents of the total number of requests
279279
([cluster.getMetrics().getRequestsTimer().getCount()][request_metric]).
280280

281-
[se_metric]: http://docs.datastax.com/en/drivers/java/2.1/com/datastax/driver/core/Metrics.Errors.html#getSpeculativeExecutions()
282-
[request_metric]: http://docs.datastax.com/en/drivers/java/2.1/com/datastax/driver/core/Metrics.html#getRequestsTimer()
281+
[se_metric]: http://docs.datastax.com/en/drivers/java/2.1/com/datastax/driver/core/Metrics.Errors.html#getSpeculativeExecutions--
282+
[request_metric]: http://docs.datastax.com/en/drivers/java/2.1/com/datastax/driver/core/Metrics.html#getRequestsTimer--
283283

284284
#### Stream id exhaustion
285285

@@ -309,7 +309,7 @@ using, you can check with
309309
[cluster.getConfiguration().getProtocolOptions().getProtocolVersion()][protocol_version].
310310

311311
[session_state]: http://docs.datastax.com/en/drivers/java/2.1/com/datastax/driver/core/Session.State.html
312-
[protocol_version]: http://docs.datastax.com/en/drivers/java/2.1/com/datastax/driver/core/ProtocolOptions.html#getProtocolVersion()
312+
[protocol_version]: http://docs.datastax.com/en/drivers/java/2.1/com/datastax/driver/core/ProtocolOptions.html#getProtocolVersion--
313313

314314
#### Request ordering and client timestamps
315315

0 commit comments

Comments
 (0)