-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
* Issue #5022 Filter Cache cleanup Issue #5022 Filter Cache cleanup: + Fixed many compiler warnings + removed old LazyList leftovers + Don't create holder string for source unless required + Only have a single type of chain, so it can be wrapped regardless of cache + Reverse mappings lists to make filter chain creation easier + build chain directly rather than build a list then a chain Signed-off-by: Greg Wilkins <gregw@webtide.com> * added comment to explain ordering Signed-off-by: gregw <gregw@webtide.com> * More cleanups * fixed toString format turn off debug in OSGI test
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -195,7 +195,7 @@ public static Request getBaseRequest(ServletRequest request) | |
private String _servletPath; | ||
private String _pathInfo; | ||
private boolean _secure; | ||
private String _asyncNotSupportedSource = null; | ||
private Object _asyncNotSupportedSource = null; | ||
private boolean _newContext; | ||
private boolean _cookiesExtracted = false; | ||
private boolean _handled = false; | ||
|
@@ -1952,7 +1952,7 @@ public void removeEventListener(final EventListener listener) | |
_requestAttributeListeners.remove(listener); | ||
} | ||
|
||
public void setAsyncSupported(boolean supported, String source) | ||
public void setAsyncSupported(boolean supported, Object source) | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
gregw
Author
Contributor
|
||
{ | ||
_asyncNotSupportedSource = supported ? null : (source == null ? "unknown" : source); | ||
} | ||
|
This signature change is not binary compatible. Was this intended to go out with 9.4.33?