* JobResource.java

remove stray whitespace
This commit is contained in:
gojomo
2010-09-02 23:56:52 +00:00
parent ad8941fa23
commit 9bfa8fc1db
@@ -234,12 +234,12 @@ public class JobResource extends BaseResource {
pw.print("<h1>Job <i>"+cj.getShortName()+"</i> (");
if (cj.isLaunchInfoPartial()) {
pw.print(" at least ");
pw.print("at least ");
}
pw.print(cj.getLaunchCount() + " launches");
if(cj.getLastLaunch()!=null) {
long ago = System.currentTimeMillis() - cj.getLastLaunch().getMillis();
pw.println(", last "+ArchiveUtils.formatMillisecondsToConventional(ago, 2)+" ago");
pw.print(", last "+ArchiveUtils.formatMillisecondsToConventional(ago, 2)+" ago");
}
pw.println(")</h1>");