Skip to content
Snippets Groups Projects
Commit ffc845db authored by srosse's avatar srosse
Browse files

OO-1546: hardened the remove method against unexpected case, identity not...

OO-1546: hardened the remove method against unexpected case, identity not participant, don't remove the last user without check it...
parent 38e12e7f
No related branches found
No related tags found
No related merge requests found
......@@ -199,21 +199,17 @@ public class DENManager {
//cancel enroll in calendar entry
if(event.getParticipants() != null) {
int currLength = event.getParticipants().length;
if (currLength > 1) {
if (currLength > 0) {
//more than one are enrolled
String[] partsNew = new String[currLength - 1]; //one to delete
List<String> partsNew = new ArrayList<>(currLength); //one to delete
String[] partsOld = event.getParticipants();
String identityName = identity.getName();
for (int i = 0, j = 0; i < partsOld.length; i++) {
if ( !(partsOld[i].equals(identityName)) ) {
partsNew[j] = partsOld[i];
j++; //only increment if new entry was made
for (String partOld:partsOld) {
if (!partOld.equals(identityName)) {
partsNew.add(partOld);
}
}
event.setParticipants(partsNew);
} else if (currLength == 1) {
//only one is enrolled, only simple reset needed
event.setParticipants(new String[0]);
event.setParticipants(partsNew.toArray(new String[partsNew.size()]));
}
//save calendar event
boolean successfullyDone = calManager.updateEventFrom(cal, event);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment