checkstyle

This commit is contained in:
Clément Fournier
2022-05-07 13:13:46 +02:00
parent 98e026bfc8
commit 5b0404ffa0

View File

@ -237,7 +237,7 @@ final class ApexTreeBuilder extends AstVisitor<AdditionalPassScope> {
}
@SuppressWarnings( { "unchecked", "rawtypes" })
@SuppressWarnings({ "unchecked", "rawtypes" })
private static <T extends AstNode> void register(Class<T> nodeType, Function<T, ? extends AbstractApexNode<T>> nodeAdapterType) {
NODE_TYPE_TO_NODE_ADAPTER_TYPE.put(nodeType, (Function) nodeAdapterType);
}