Fix formatting

This commit is contained in:
Vincent Spiewak
2013-09-13 16:26:49 +02:00
parent 6014800a5d
commit 2f4ad28049
4 changed files with 19 additions and 19 deletions

View File

@@ -4,10 +4,10 @@ import com.beust.jcommander.Parameter;
public class InputParameters {
@Parameter(names = { "-log", "-n" }, description = "Number of logs to generate")
@Parameter(names = {"-logs", "-n"}, description = "Number of logs to generate")
public Long logs = 10L;
@Parameter(names = { "-threads", "-t" }, description = "Number of threads to use")
@Parameter(names = {"-threads", "-t"}, description = "Number of threads to use")
public Integer threads = 2;
@Parameter(names = "--help", help = true)

View File

@@ -20,7 +20,7 @@ public class LogExecutor {
}
public LogExecutor addAll(Iterable<Callable<Long>> tasks) {
for(Callable<Long> task : tasks) {
for (Callable<Long> task : tasks) {
executor.submit(task);
}
return this;