Removed unnecessary colon
This commit is contained in:
@@ -30,7 +30,7 @@ public class PercentageBasedSampler implements Sampler {
|
||||
private final SamplerProperties configuration;
|
||||
|
||||
public PercentageBasedSampler(SamplerProperties configuration) {
|
||||
int outOf100 = (int) (configuration.getPercentage() * 100.0f);;
|
||||
int outOf100 = (int) (configuration.getPercentage() * 100.0f);
|
||||
this.sampleDecisions = randomBitSet(100, outOf100, new Random());
|
||||
this.configuration = configuration;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user