codeql-go merge prep: move into go/ directory

This commit is contained in:
Chuan-kai Lin
2022-05-20 10:07:19 -07:00
parent 415c3d1c72
commit aa514fff32
2277 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package net.sourceforge.pmd.cpd;
/*
* This is a stub definition for pmd's AbstractLanguage class
* including only the API used by the GoLanguage class.
*/
public abstract class AbstractLanguage {
public AbstractLanguage(String... extensions) {}
public abstract Tokenizer getTokenizer(boolean fuzzyMatch);
}