]> source.dussan.org Git - jackcess.git/commitdiff
minor updates
authorJames Ahlborn <jtahlborn@yahoo.com>
Wed, 9 Mar 2011 04:55:14 +0000 (04:55 +0000)
committerJames Ahlborn <jtahlborn@yahoo.com>
Wed, 9 Mar 2011 04:55:14 +0000 (04:55 +0000)
git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@523 f203690c-595d-4dc9-a70b-905162fa7fd2

src/java/com/healthmarketscience/jackcess/RowFilter.java

index 7f8339dfe12c3106c7b8e0a6b1d74a973176b662..4f519e880dada187bed87ec0f2503c426d65dcd1 100644 (file)
@@ -70,7 +70,7 @@ public abstract class RowFilter
    * 
    * @param rowPattern Map from column names to the values to be matched.
    *                   A table row will match the target if
-   *                   {@code ObjectUtil.equals(rowPattern.get(s), row.get(s))}
+   *                   {@code ObjectUtils.equals(rowPattern.get(s), row.get(s))}
    *                   for all column names in the pattern map.
    * @return a filter which matches table rows which match the values in the
    *         row pattern
@@ -97,7 +97,7 @@ public abstract class RowFilter
    * @param columnPattern column to be matched
    * @param valuePattern value to be matched.
    *                     A table row will match the target if
-   *                     {@code ObjectUtil.equals(valuePattern, row.get(columnPattern.getName()))}.
+   *                     {@code ObjectUtils.equals(valuePattern, row.get(columnPattern.getName()))}.
    * @return a filter which matches table rows which match the value in the
    *         row pattern
    */