Skip to content

Commit 364d9e8

Browse files
committed
Minor javadoc fixes
1 parent 99f4415 commit 364d9e8

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

core/src/main/java/com/datastax/oss/driver/api/core/connection/BusyConnectionException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* requests.
2626
*
2727
* <p>This might happen under heavy load. The driver will automatically try the next node in the
28-
* query plan. Therefore the only way that the client can observe this exception is as part of a
28+
* query plan. Therefore, the only way that the client can observe this exception is as part of a
2929
* {@link AllNodesFailedException}.
3030
*/
3131
public class BusyConnectionException extends DriverException {

core/src/main/java/com/datastax/oss/driver/internal/core/adminrequest/AdminRequestHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
import org.slf4j.Logger;
4848
import org.slf4j.LoggerFactory;
4949

50-
/** Handles the lifecyle of an admin request (such as a node refresh or schema refresh query). */
50+
/** Handles the lifecycle of an admin request (such as a node refresh or schema refresh query). */
5151
@ThreadSafe
5252
public class AdminRequestHandler<ResultT> implements ResponseCallback {
5353
private static final Logger LOG = LoggerFactory.getLogger(AdminRequestHandler.class);

core/src/main/java/com/datastax/oss/driver/internal/core/pool/ChannelPool.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,6 @@ public boolean isInvalidKeyspace() {
143143
* request path, and we want to avoid complex check-then-act semantics; therefore this might
144144
* race and return a channel that is already closed, or {@code null}. In those cases, it is up
145145
* to the caller to fail fast and move to the next node.
146-
* <p>There is no need to return the channel.
147146
*/
148147
public DriverChannel next() {
149148
return channels.next();

0 commit comments

Comments
 (0)