else {
String lastUser = null;
Iterator modificationsIter = lastBuildChanges.iterator();
while ( modificationsIter.hasNext() ) {
ProjectModification modification = (ProjectModification) modificationsIter.next();
String currentUser = modification.getUser();
if ( lastUser == null || !lastUser.equals( currentUser )) {
lastUser = currentUser;
sb.append( currentUser );
sb.append( "\r\n\t" );
}
sb.append( modification.getComment() );
sb.append( "\r\n" );
}
}
OutputStatusPanel panel = new OutputStatusPanel();