forked from phoedos/pmd
Added vararg to constructor so it matches with super constructor.
git-svn-id: https://pmd.svn.sourceforge.net/svnroot/pmd/branches/pmd/4.2.x@7027 51baf565-9d33-0410-a72c-fc3788e3496d
This commit is contained in:
parent
2130c12ba3
commit
c831d82bf0
@ -4,7 +4,7 @@
|
||||
package net.sourceforge.pmd.cpd;
|
||||
|
||||
public class AnyLanguage extends AbstractLanguage {
|
||||
public AnyLanguage(String extension) {
|
||||
super(new AnyTokenizer(), extension);
|
||||
public AnyLanguage(String... extensions) {
|
||||
super(new AnyTokenizer(), extensions);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user