forked from phoedos/pmd
Truly disable multifile
This commit is contained in:
@ -16,12 +16,16 @@ import net.sourceforge.pmd.lang.apex.metrics.signature.ApexOperationSigMask;
|
||||
*
|
||||
* @author Clément Fournier
|
||||
*/
|
||||
public class ApexProjectMirror implements ApexSignatureMatcher {
|
||||
class ApexProjectMirror implements ApexSignatureMatcher {
|
||||
|
||||
static final ApexProjectMirror INSTANCE = new ApexProjectMirror();
|
||||
|
||||
private final Map<ApexQualifiedName, ApexClassStats> classes = new HashMap<>();
|
||||
|
||||
ApexProjectMirror() {
|
||||
|
||||
}
|
||||
|
||||
|
||||
void reset() {
|
||||
classes.clear();
|
||||
|
@ -577,7 +577,7 @@ public class RuleSetFactory {
|
||||
}
|
||||
|
||||
if (hasAttributeSetTrue(ruleElement, "multifile")) {
|
||||
rule.setUsesMultifile();
|
||||
// rule.setUsesMultifile(); // TODO, once that's safe
|
||||
}
|
||||
|
||||
final NodeList nodeList = ruleElement.getChildNodes();
|
||||
|
Reference in New Issue
Block a user