From 9239baa9fd8885f7d3554a0930a1a1a940215b68 Mon Sep 17 00:00:00 2001 From: James Ahlborn Date: Wed, 9 Mar 2011 04:55:14 +0000 Subject: [PATCH] minor updates 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 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 */ -- 2.39.5