Is this an instance of the default Loader configuration, with all-default properties? @param loader Loader to be tested @return true if this is an instance of the default loader
(Loader loader)
| 65 | * @return <code>true</code> if this is an instance of the default loader |
| 66 | */ |
| 67 | protected boolean isDefaultLoader(Loader loader) { |
| 68 | |
| 69 | if (!(loader instanceof WebappLoader wloader)) { |
| 70 | return false; |
| 71 | } |
| 72 | return (!wloader.getDelegate()) && wloader.getJakartaConverter() == null && |
| 73 | wloader.getLoaderClass().equals(ParallelWebappClassLoader.class.getName()); |
| 74 | } |
| 75 | } |
no test coverage detected