dnaber 2004/08/03 14:32:50 Modified: src/demo/org/apache/lucene/demo/html HTMLParser.java HTMLParser.jj Log: remove "throws IOException" that could never be thrown Revision Changes Path 1.6 +1 -1 jakarta-lucene/src/demo/org/apache/lucene/demo/html/HTMLParser.java Index: HTMLParser.java =================================================================== RCS file: /home/cvs/jakarta-lucene/src/demo/org/apache/lucene/demo/html/HTMLParser.java,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- HTMLParser.java 20 Apr 2004 16:27:24 -0000 1.5 +++ HTMLParser.java 3 Aug 2004 21:32:49 -0000 1.6 @@ -139,7 +139,7 @@ afterSpace = false; } - void addMetaTag() throws IOException { + void addMetaTag() { metaTags.setProperty(currentMetaTag, currentMetaContent); currentMetaTag = null; currentMetaContent = null; 1.7 +1 -1 jakarta-lucene/src/demo/org/apache/lucene/demo/html/HTMLParser.jj Index: HTMLParser.jj =================================================================== RCS file: /home/cvs/jakarta-lucene/src/demo/org/apache/lucene/demo/html/HTMLParser.jj,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- HTMLParser.jj 20 Apr 2004 16:27:24 -0000 1.6 +++ HTMLParser.jj 3 Aug 2004 21:32:50 -0000 1.7 @@ -203,7 +203,7 @@ afterSpace = false; } - void addMetaTag() throws IOException { + void addMetaTag() { metaTags.setProperty(currentMetaTag, currentMetaContent); currentMetaTag = null; currentMetaContent = null;
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]