Changed in a a text.

This commit is contained in:
Tom Vahlman 2012-02-14 14:21:25 +01:00
parent ffb3727a42
commit aa8381161e

@ -104,9 +104,9 @@ public class ApplicationPeriodFacade {
}
return new StringBuilder()
.append("'").append(appPeriod.getName()).append("'")
.append("\tStart date : '").append(new DateFormatter(DateFormatter.FORMAT.DEFAULT).createFormattedString(appPeriod.getStartDate())).append("'")
.append("\tEnd date : '").append(new DateFormatter(DateFormatter.FORMAT.DEFAULT).createFormattedString(appPeriod.getEndDate())).append("'")
.append("\tLevels: '").append(projectClasses.toString()).append("'").toString();
.append(" Start date : '").append(new DateFormatter(DateFormatter.FORMAT.DEFAULT).createFormattedString(appPeriod.getStartDate())).append("'")
.append(" End date : '").append(new DateFormatter(DateFormatter.FORMAT.DEFAULT).createFormattedString(appPeriod.getEndDate())).append("'")
.append(" Levels: '").append(projectClasses.toString()).append("'").toString();
}
/**