From: James Ahlborn Date: Wed, 9 Mar 2011 04:55:14 +0000 (+0000) Subject: minor updates X-Git-Tag: jackcess-1.2.4~34 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=9239baa9fd8885f7d3554a0930a1a1a940215b68;p=jackcess.git minor updates git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@523 f203690c-595d-4dc9-a70b-905162fa7fd2 --- diff --git a/src/java/com/healthmarketscience/jackcess/RowFilter.java b/src/java/com/healthmarketscience/jackcess/RowFilter.java index 7f8339d..4f519e8 100644 --- a/src/java/com/healthmarketscience/jackcess/RowFilter.java +++ b/src/java/com/healthmarketscience/jackcess/RowFilter.java @@ -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 */