# IGNITE-375 Review.
Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/1c608cd3 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/1c608cd3 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/1c608cd3 Branch: refs/heads/ignite-409 Commit: 1c608cd3f7a898cf6b77c1e1a952830058a79212 Parents: 412b87d Author: AKuznetsov <akuznet...@gridgain.com> Authored: Wed Mar 18 15:51:00 2015 +0700 Committer: AKuznetsov <akuznet...@gridgain.com> Committed: Wed Mar 18 15:51:00 2015 +0700 ---------------------------------------------------------------------- .../apache/ignite/cache/store/jdbc/CacheAbstractJdbcStore.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/1c608cd3/modules/core/src/main/java/org/apache/ignite/cache/store/jdbc/CacheAbstractJdbcStore.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/cache/store/jdbc/CacheAbstractJdbcStore.java b/modules/core/src/main/java/org/apache/ignite/cache/store/jdbc/CacheAbstractJdbcStore.java index 3d62dca..85c036f 100644 --- a/modules/core/src/main/java/org/apache/ignite/cache/store/jdbc/CacheAbstractJdbcStore.java +++ b/modules/core/src/main/java/org/apache/ignite/cache/store/jdbc/CacheAbstractJdbcStore.java @@ -1223,7 +1223,7 @@ public abstract class CacheAbstractJdbcStore<K, V> implements CacheStore<K, V>, * @param em Entry mapping. * @param key Key object. * @return Next index for parameters. - * @throws CacheException If failed to set statement parameter. + * @throws CacheException If failed to set statement parameters. */ protected int fillKeyParameters(PreparedStatement stmt, int idx, EntryMapping em, Object key) throws CacheException { @@ -1241,7 +1241,7 @@ public abstract class CacheAbstractJdbcStore<K, V> implements CacheStore<K, V>, * @param m Type mapping description. * @param key Key object. * @return Next index for parameters. - * @throws CacheException If failed to set statement parameter. + * @throws CacheException If failed to set statement parameters. */ protected int fillKeyParameters(PreparedStatement stmt, EntryMapping m, Object key) throws CacheException { return fillKeyParameters(stmt, 1, m, key); @@ -1253,7 +1253,7 @@ public abstract class CacheAbstractJdbcStore<K, V> implements CacheStore<K, V>, * @param em Type mapping description. * @param val Value object. * @return Next index for parameters. - * @throws CacheException If failed to set statement parameter. + * @throws CacheException If failed to set statement parameters. */ protected int fillValueParameters(PreparedStatement stmt, int idx, EntryMapping em, Object val) throws CacheWriterException {