Converts the given object to the given type. @param The type to which the object should be converted @param context The EL context for this evaluation @param obj The object to convert @param type The type to which the object should be converted @return This default implementation al
(ELContext context, Object obj, Class<T> type)
| 144 | * @since EL 3.0 |
| 145 | */ |
| 146 | public <T> T convertToType(ELContext context, Object obj, Class<T> type) { |
| 147 | context.setPropertyResolved(false); |
| 148 | return null; |
| 149 | } |
| 150 | } |
no test coverage detected