From 6e76579e93de4b7de108866e1f7c425d9197158e Mon Sep 17 00:00:00 2001 From: Tom Copeland Date: Thu, 4 Sep 2003 19:31:40 +0000 Subject: [PATCH] Not yet implemented git-svn-id: https://pmd.svn.sourceforge.net/svnroot/pmd/trunk@2239 51baf565-9d33-0410-a72c-fc3788e3496d --- pmd/src/net/sourceforge/pmd/JLS1_1.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pmd/src/net/sourceforge/pmd/JLS1_1.java b/pmd/src/net/sourceforge/pmd/JLS1_1.java index e83c7ae052..163a58c91f 100644 --- a/pmd/src/net/sourceforge/pmd/JLS1_1.java +++ b/pmd/src/net/sourceforge/pmd/JLS1_1.java @@ -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"); } }