[Htmlparser-cvs] htmlparser/src/org/htmlparser/filters AndFilter.java,1.5,1.6 OrFilter.java,1.5,1.6
Brought to you by:
derrickoswald
From: Ian M. <ian...@us...> - 2006-05-16 09:15:00
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/filters In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv29501/src/org/htmlparser/filters Modified Files: AndFilter.java OrFilter.java Log Message: Incorrect grammar in javadoc. Changed [it's] to [its]. Index: AndFilter.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/filters/AndFilter.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** AndFilter.java 16 May 2006 07:58:21 -0000 1.5 --- AndFilter.java 16 May 2006 09:14:55 -0000 1.6 *************** *** 31,35 **** /** ! * Accepts nodes matching all of it's predicate filters (AND operation). */ public class AndFilter --- 31,35 ---- /** ! * Accepts nodes matching all of its predicate filters (AND operation). */ public class AndFilter *************** *** 102,106 **** /** ! * Accept nodes that are acceptable to all of it's predicate filters. * @param node The node to check. * @return <code>true</code> if all the predicate filters find the node --- 102,106 ---- /** ! * Accept nodes that are acceptable to all of its predicate filters. * @param node The node to check. * @return <code>true</code> if all the predicate filters find the node Index: OrFilter.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/filters/OrFilter.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** OrFilter.java 16 May 2006 07:58:21 -0000 1.5 --- OrFilter.java 16 May 2006 09:14:55 -0000 1.6 *************** *** 31,35 **** /** ! * Accepts nodes matching any of it's predicates filters (OR operation). */ public class OrFilter implements NodeFilter --- 31,35 ---- /** ! * Accepts nodes matching any of its predicates filters (OR operation). */ public class OrFilter implements NodeFilter *************** *** 100,104 **** /** ! * Accept nodes that are acceptable to any of it's predicate filters. * @param node The node to check. * @return <code>true</code> if any of the predicate filters find the node --- 100,104 ---- /** ! * Accept nodes that are acceptable to any of its predicate filters. * @param node The node to check. * @return <code>true</code> if any of the predicate filters find the node |