Rework CPD's LanguageFactory to use ServiceLoader, too
This commit is contained in:
@ -9,6 +9,6 @@ package net.sourceforge.pmd.cpd;
|
||||
*/
|
||||
public class FortranLanguage extends AbstractLanguage {
|
||||
public FortranLanguage() {
|
||||
super(new FortranTokenizer(), ".for", ".f", ".f66", ".f77", ".f90");
|
||||
super("fortran", new FortranTokenizer(), ".for", ".f", ".f66", ".f77", ".f90");
|
||||
}
|
||||
}
|
||||
|
@ -0,0 +1 @@
|
||||
net.sourceforge.pmd.cpd.FortranLanguage
|
Reference in New Issue
Block a user