Skip to content

Instantly share code, notes, and snippets.

if (!groups.isEmpty()) {
// lets see if we can filter based on groups
boolean filter = true;
for (String group : reservation.getGroupNames()) {
if (groups.contains(group)) {
filter = false;
break;
}
}
if (filter) {