fixed typo

This commit is contained in:
Juergen Hoeller 2010-09-06 22:56:18 +00:00
parent ba946c08dd
commit 7e5215b5d4
1 changed files with 1 additions and 1 deletions

View File

@ -297,7 +297,7 @@ public class AnnotationMethodHandlerAdapter extends PortletContentGenerator
public void handleEvent(EventRequest request, EventResponse response, Object handler) throws Exception {
Object returnValue = doHandle(request, response, handler);
if (returnValue != null) {
throw new IllegalStateException("Invalid action method return value: " + returnValue);
throw new IllegalStateException("Invalid event method return value: " + returnValue);
}
}