[core] XPathHandler: Avoid direct dependency on saxon, Part 1

This commit is contained in:
Andreas Dangel
2024-01-25 10:23:58 +01:00
parent c800bba733
commit b8ecc890af
16 changed files with 220 additions and 124 deletions

View File

@@ -5,9 +5,9 @@
package net.sourceforge.pmd.lang.kotlin.rule.xpath.internal;
import net.sourceforge.pmd.lang.kotlin.KotlinLanguageModule;
import net.sourceforge.pmd.lang.rule.xpath.impl.AbstractXPathFunctionDef;
import net.sourceforge.pmd.lang.rule.xpath.impl.XPathFunctionDefinition;
abstract class BaseKotlinXPathFunction extends AbstractXPathFunctionDef {
abstract class BaseKotlinXPathFunction extends XPathFunctionDefinition {
protected BaseKotlinXPathFunction(String localName) {
super(localName, KotlinLanguageModule.getInstance());