AuthorizeManager.authorizeAction(context, group, Constants.WRITE);
if ((group != null)) {
int eid = Integer.parseInt((String) inputVar.get("eid"));
EPerson ePerson = EPerson.find(context, eid);
if (ePerson != null) {
group.removeMember(ePerson);
group.update();
}
}
} catch (SQLException ex) {
throw new EntityException("Internal server error", "SQL error", 500);