remove "throws IOException" that could never be thrown

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@150388 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Daniel Naber 2004-08-03 21:32:50 +00:00
parent 5335af3bee
commit daf920b59d
2 changed files with 2 additions and 2 deletions

View File

@ -139,7 +139,7 @@ InterruptedException {
afterSpace = false; afterSpace = false;
} }
void addMetaTag() throws IOException { void addMetaTag() {
metaTags.setProperty(currentMetaTag, currentMetaContent); metaTags.setProperty(currentMetaTag, currentMetaContent);
currentMetaTag = null; currentMetaTag = null;
currentMetaContent = null; currentMetaContent = null;

View File

@ -203,7 +203,7 @@ InterruptedException {
afterSpace = false; afterSpace = false;
} }
void addMetaTag() throws IOException { void addMetaTag() {
metaTags.setProperty(currentMetaTag, currentMetaContent); metaTags.setProperty(currentMetaTag, currentMetaContent);
currentMetaTag = null; currentMetaTag = null;
currentMetaContent = null; currentMetaContent = null;