#2707 add hasQueryParser

This commit is contained in:
Shinsuke Sugaya 2023-01-05 09:44:30 +09:00
parent d3f6645d2e
commit 15c66e06f5

View file

@ -544,6 +544,10 @@ public final class ComponentUtil {
return SingletonLaContainerFactory.getContainer().hasComponentDef(componentKey);
}
public static boolean hasQueryParser() {
return hasComponent(QUERY_PARSER);
}
public static boolean hasViewHelper() {
return hasComponent(VIEW_HELPER);
}