Skip to content

Commit

Permalink
Checkstyle fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
LadyCailin committed Sep 10, 2018
1 parent dea19a7 commit 088bc68
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Expand Up @@ -119,8 +119,7 @@ public void run() {
while(true) {
try {
fsSize = FileUtils.sizeOfDirectoryAsBigInteger(root);
//Sleep for a minute before running again.

//Sleep for a minute before running again.
Thread.sleep(TimeUnit.MILLISECONDS.convert(1, TimeUnit.MINUTES));
} catch (InterruptedException ex) {
Logger.getLogger(VirtualFileSystem.class.getName()).log(Level.SEVERE, null, ex);
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/laytonsmith/core/functions/Cmdline.java
Expand Up @@ -984,7 +984,7 @@ public Construct exec(final Target t, final Environment environment, Construct..
exit = null;
subshell = false;
}
final CommandExecutor.CommandExecutorBuilder.CommandExecutorBuilderOptional bldr =
final CommandExecutor.CommandExecutorBuilder.CommandExecutorBuilderOptional bldr =
new CommandExecutor.CommandExecutorBuilder().setArgs(command);
bldr.setWorkingDir(workingDir);
final MutableObject<StringBuilder> sbout = new MutableObject(new StringBuilder());
Expand Down Expand Up @@ -1191,7 +1191,7 @@ public Construct exec(Target t, Environment environment, Construct... args) thro
}
}
}
CommandExecutor.CommandExecutorBuilder.CommandExecutorBuilderOptional bldr =
CommandExecutor.CommandExecutorBuilder.CommandExecutorBuilderOptional bldr =
new CommandExecutor.CommandExecutorBuilder().setArgs(command);
final StringBuilder sout = new StringBuilder();
OutputStream out = new BufferedOutputStream(new OutputStream() {
Expand Down

0 comments on commit 088bc68

Please sign in to comment.