Skip to content

Commit

Permalink
Fixed slight format issue (missing newline)
Browse files Browse the repository at this point in the history
  • Loading branch information
Roger Hughes committed Apr 20, 2014
1 parent bc2d927 commit b33d161
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ private void addDetails(StringBuilder sb, List<String> lines) {

for (String line : lines) {
sb.append(line);
// sb.append("\n");
sb.append("\n");
}
}
}
2 changes: 1 addition & 1 deletion error-track/src/script/runme.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash

echo Running Error Tracking...
java -verbose -classpath activation-1.1.jar:slf4j-api-1.6.6.jar:aopalliance-1.0.jar:slf4j-log4j12-1.6.6.jar:commons-lang3-3.1.jar:spring-aop-3.2.7.RELEASE.jar:commons-logging-1.1.3.jar:spring-beans-3.2.7.RELEASE.jar:spring-context-3.2.7.RELEASE.jar:guava-13.0.1.jar:spring-context-support-3.2.7.RELEASE.jar:log4j-1.2.16.jar:spring-core-3.2.7.RELEASE.jar:mail-1.4.jar:spring-expression-3.2.7.RELEASE.jar:quartz-1.8.6.jar:spring-tx-3.2.7.RELEASE.jar -jar error-track-1.0-SNAPSHOT.jar com.captaindebug.errortrack.Main
java -verbose -jar error-track-1.0-SNAPSHOT.jar com.captaindebug.errortrack.Main

0 comments on commit b33d161

Please sign in to comment.