matcher = p.matcher(summary);
summary = matcher.replaceAll(" ");
}
bean =
new ClassEventBean(lessonInstance.getBeginDateTime(), lessonInstance.getEndDateTime(), false, location,
url + "/sumarios", summary, getShift());
} else {
if (getLessonSpaceOccupation() != null) {
location.add(getLessonSpaceOccupation().getRoom());
}
DateTime endDate =
new DateTime(aDay.getYear(), aDay.getMonthOfYear(), aDay.getDayOfMonth(), getEndHourMinuteSecond()
.getHour(), getEndHourMinuteSecond().getMinuteOfHour(), getEndHourMinuteSecond()
.getSecondOfMinute(), 0);
bean = new ClassEventBean(beginDate, endDate, false, location, url, null, getShift());
}
result.add(bean);
}