spacing and typos

This commit is contained in:
Jonathan Shook 2021-09-13 09:43:48 -05:00
parent a019258b3d
commit aae973c9dd
4 changed files with 5 additions and 4 deletions

View File

@ -46,7 +46,7 @@ import java.util.function.LongFunction;
public interface OpDispenser<T> extends LongFunction<T> {
/**
* The apply method in an op dispenser should do all of the work of
* The apply method in an op dispenser should do all the work of
* creating an operation that is executable by some other caller.
* The value produced by the apply method should not require
* additional processing if a caller wants to execute the operation

View File

@ -32,6 +32,7 @@ public class StatementsLoader {
private final static Logger logger = LogManager.getLogger(StatementsLoader.class);
public enum Loader {
original,
generified
@ -88,7 +89,6 @@ public class StatementsLoader {
String transformed = transformer.apply(statement);
RawStmtsDocList rawStmtsDocList = RawStmtsDocList.forSingleStatement(transformed);
return new StmtsDocList(rawStmtsDocList);
}
public static StmtsDocList loadPath(

View File

@ -127,7 +127,7 @@ public class DockerMetricsManager {
List<String> linkNames = new ArrayList();
dh.startDocker(PROMETHEUS_IMG, tag, name, port, volumeDescList, envList, cmdList, reload, linkNames);
logger.info("prometheus started and listenning");
logger.info("prometheus started and listening");
}
private String startGraphite() {
@ -187,7 +187,7 @@ public class DockerMetricsManager {
}
}
volumeDescList.add(mappingPath.toString() + ":/tmp/graphite_mapping.conf");
volumeDescList.add(mappingPath + ":/tmp/graphite_mapping.conf");
}

View File

@ -8,6 +8,7 @@ import java.util.Map;
import java.util.Optional;
public class NBConfiguration {
private final LinkedHashMap<String, Object> data;
private final NBConfigModel model;