Skip to content

Commit

Permalink
Fixed checkstyle errors - 4
Browse files Browse the repository at this point in the history
  • Loading branch information
sarvekshayr committed Mar 22, 2024
1 parent b9260a0 commit f3fcd70
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
package org.apache.hadoop.hdds.scm.server;

import com.google.common.annotations.VisibleForTesting;
import com.google.common.base.Preconditions;
import com.google.common.base.Strings;
import com.google.common.collect.Maps;
import com.google.protobuf.BlockingService;
Expand Down Expand Up @@ -1114,7 +1113,7 @@ public StartContainerBalancerResponseProto startContainerBalancer(
long msls = maxSizeLeavingSource.get();
auditMap.put("maxSizeLeavingSource", String.valueOf(msls));
if (msls < 0) {
throw new SCMException("Max Size Leaving Source must be "+
throw new SCMException("Max Size Leaving Source must be " +
"greater than zero.", resultCodes);
}
cbc.setMaxSizeLeavingSource(msls * OzoneConsts.GB);
Expand Down

0 comments on commit f3fcd70

Please sign in to comment.