636465666768697071
throw new InvalidStateIdException(e, stateId); } PortletStateContext context = store.get(stateId); if (context == null) { throw new NoSuchStateException(stateId); } return context; }
133134135136137138139140
{ throw new InvalidStateIdException(e, stateId); } if (store.remove(stateId) == null) { throw new NoSuchStateException(stateId); } }