Not yet implemented

git-svn-id: https://pmd.svn.sourceforge.net/svnroot/pmd/trunk@2239 51baf565-9d33-0410-a72c-fc3788e3496d
This commit is contained in:
Tom Copeland
2003-09-04 19:31:40 +00:00
parent 0a2ffdf47a
commit 6e76579e93

View File

@ -8,10 +8,10 @@ import java.io.Reader;
public class JLS1_1 implements JLSVersion {
public JavaParser createParser(InputStream in) {
return new JavaParser(in);
throw new RuntimeException("Not yet implemented");
}
public JavaParser createParser(Reader in) {
return new JavaParser(in);
throw new RuntimeException("Not yet implemented");
}
}