Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[apex] Remove Apex ProjectMirror #2836

Merged
merged 3 commits into from
Oct 26, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Remove apex multifile things
  • Loading branch information
oowekyala committed Sep 14, 2020
commit 6735b61c8f4b6acd407a4e846c1b8ae9972fea90

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,7 @@

package net.sourceforge.pmd.lang.apex.ast;

import net.sourceforge.pmd.lang.LanguageVersion;
import net.sourceforge.pmd.lang.LanguageVersionHandler;
import net.sourceforge.pmd.lang.apex.ApexLanguageModule;
import net.sourceforge.pmd.lang.apex.multifile.ApexMultifileVisitorFacade;
import net.sourceforge.pmd.lang.ast.test.BaseParsingHelper;

public class ApexParsingHelper extends BaseParsingHelper<ApexParsingHelper, ASTApexFile> {
Expand All @@ -24,9 +21,4 @@ protected ApexParsingHelper clone(Params params) {
return new ApexParsingHelper(params);
}

@Override
protected void postProcessing(LanguageVersionHandler handler, LanguageVersion lversion, ASTApexFile rootNode) {
super.postProcessing(handler, lversion, rootNode);
new ApexMultifileVisitorFacade().initializeWith(rootNode);
}
}

This file was deleted.