# ignite-370: fix allowOverwrite java-doc
Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/e0d0584d Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/e0d0584d Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/e0d0584d Branch: refs/heads/ignite-406 Commit: e0d0584db1365eb9815d0e39610d1a936abb90a4 Parents: 9c8217c Author: Artem Shutak <ashu...@gridgain.com> Authored: Wed Mar 4 18:33:41 2015 +0300 Committer: Artem Shutak <ashu...@gridgain.com> Committed: Wed Mar 4 18:33:41 2015 +0300 ---------------------------------------------------------------------- .../core/src/main/java/org/apache/ignite/IgniteDataStreamer.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/e0d0584d/modules/core/src/main/java/org/apache/ignite/IgniteDataStreamer.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/IgniteDataStreamer.java b/modules/core/src/main/java/org/apache/ignite/IgniteDataStreamer.java index a47c079..f5158b4 100644 --- a/modules/core/src/main/java/org/apache/ignite/IgniteDataStreamer.java +++ b/modules/core/src/main/java/org/apache/ignite/IgniteDataStreamer.java @@ -103,7 +103,7 @@ public interface IgniteDataStreamer<K, V> extends AutoCloseable { /** * Gets flag value indicating that this data streamer assumes that there are no other concurrent updates to the cache. - * Default is {@code true}. + * Default is {@code false}. * * @return Flag value. */ @@ -112,7 +112,7 @@ public interface IgniteDataStreamer<K, V> extends AutoCloseable { /** * Sets flag indicating that this data streamer should assume that there are no other concurrent updates to the cache. * Should not be used when custom cache updater set using {@link #updater(IgniteDataStreamer.Updater)} method. - * Default is {@code true}. When this flag is set, updates will not be propagated to the cache store. + * Default is {@code false}. When this flag is set, updates will not be propagated to the cache store. * * @param allowOverwrite Flag value. * @throws IgniteException If failed.