HDDS-840. [JDK11] Fix Javadoc errors in hadoop-hdds-client module. Contributed by Dinesh Chitlangia.
This commit is contained in:
parent
c4d9640028
commit
3420ddd0f8
|
@ -97,9 +97,6 @@ public final class XceiverClientRatis extends XceiverClientSpi {
|
|||
this.retryPolicy = retryPolicy;
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
public void createPipeline() throws IOException {
|
||||
final RaftGroup group = RatisHelper.newRaftGroup(pipeline);
|
||||
|
@ -108,9 +105,6 @@ public final class XceiverClientRatis extends XceiverClientSpi {
|
|||
(raftClient, peer) -> raftClient.groupAdd(group, peer.getId()));
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
public void destroyPipeline() throws IOException {
|
||||
final RaftGroup group = RatisHelper.newRaftGroup(pipeline);
|
||||
|
@ -219,7 +213,6 @@ public final class XceiverClientRatis extends XceiverClientSpi {
|
|||
*
|
||||
* @param request Request
|
||||
* @return Response to the command
|
||||
* @throws IOException
|
||||
*/
|
||||
@Override
|
||||
public XceiverClientAsyncReply sendCommandAsync(
|
||||
|
|
|
@ -78,9 +78,7 @@ public class ContainerOperationClient implements ScmClient {
|
|||
containerSizeB = size;
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritDoc
|
||||
*/
|
||||
|
||||
@Override
|
||||
public ContainerWithPipeline createContainer(String owner)
|
||||
throws IOException {
|
||||
|
@ -173,9 +171,6 @@ public class ContainerOperationClient implements ScmClient {
|
|||
pipeline.toString());
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritDoc
|
||||
*/
|
||||
@Override
|
||||
public ContainerWithPipeline createContainer(HddsProtos.ReplicationType type,
|
||||
HddsProtos.ReplicationFactor factor, String owner) throws IOException {
|
||||
|
@ -280,9 +275,6 @@ public class ContainerOperationClient implements ScmClient {
|
|||
deleteContainer(containerID, info.getPipeline(), force);
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
public List<ContainerInfo> listContainer(long startContainerID,
|
||||
int count) throws IOException {
|
||||
|
|
Loading…
Reference in New Issue