Skip to content

Commit

Permalink
Minor whitespace changes
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianquek authored Oct 17, 2016
1 parent 3253900 commit 08dfd05
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/tui/CollateTui.java
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public class CollateTui {
* @param args
*/
public static void main(String[] args) {
if(args.length == 0 ) {
if (args.length == 0) {
runInteractiveMode();
} else {
runBatchMode(args);
Expand All @@ -89,7 +89,7 @@ private static void runBatchMode(String[] args) {

private static String stitchArgs(String args[]) {
StringJoiner joiner = new StringJoiner(" ");
for(String s: args){
for (String s: args) {
joiner.add(s);
}
return joiner.toString();
Expand Down

0 comments on commit 08dfd05

Please sign in to comment.