Skip to content

Commit

Permalink
Checkstyle fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tejaskriya committed Dec 14, 2023
1 parent 6fc380f commit 1f2e35a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ public Set<ContainerReplica> getContainerReplicas(final ContainerID id)
throws ContainerNotFoundException {
return Optional.ofNullable(containerStateManager
.getContainerReplicas(id))
.orElseThrow(() -> new ContainerNotFoundException("Container with ID " +
.orElseThrow(() -> new ContainerNotFoundException("Container with id " +
id + " not found."));
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,12 @@
*/
package org.apache.hadoop.hdds.scm.cli.container;

import java.io.IOException;
import java.util.concurrent.Callable;

import org.apache.hadoop.hdds.cli.GenericCli;
import org.apache.hadoop.hdds.cli.HddsVersionProvider;
import org.apache.hadoop.hdds.cli.OzoneAdmin;
import org.apache.hadoop.hdds.cli.SubcommandWithParent;
import org.apache.hadoop.hdds.scm.client.ScmClient;
import org.apache.hadoop.hdds.scm.container.ContainerInfo;

import org.kohsuke.MetaInfServices;
import picocli.CommandLine.Command;
Expand Down

0 comments on commit 1f2e35a

Please sign in to comment.