1 /**
2 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html
3 * @author Romain PELISSE belaran@gmail.com
4 */
5 package net.sourceforge.pmd.cpd;
6
7 public class FortranLanguage extends AbstractLanguage {
8 public FortranLanguage() {
9 super(new FortranTokenizer(), ".for");
10 }
11 }