Checkstyle

This commit is contained in:
Clément Fournier
2018-01-25 03:13:22 +01:00
parent 1bdca98f03
commit 0316462916

View File

@@ -453,9 +453,9 @@ public abstract class AbstractNode implements Node {
@Override @Override
// @Deprecated // FUTURE 7.0.0 make abstract // @Deprecated // FUTURE 7.0.0 make abstract
public String getXPathNodeName() { public String getXPathNodeName() {
LOG.warning("getXPathNodeName should be overriden in classes derived from AbstractNode. " + LOG.warning("getXPathNodeName should be overriden in classes derived from AbstractNode. "
"The implementation is provided for compatibility with existing implementors," + + "The implementation is provided for compatibility with existing implementors,"
"but could be declared abstract as soon as release " + PMDVersion.getNextMajorRelease() + "but could be declared abstract as soon as release " + PMDVersion.getNextMajorRelease()
+ "."); + ".");
return toString(); return toString();
} }