Repository: ignite Updated Branches: refs/heads/ignite-2977 8f7247174 -> e2f7631b4
IGNITE-2977: Removed "protected" from writeReplace(). Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/e2f7631b Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/e2f7631b Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/e2f7631b Branch: refs/heads/ignite-2977 Commit: e2f7631b486ca2c1afc9dbb721a47576b7c708cb Parents: 8f72471 Author: vozerov-gridgain <[email protected]> Authored: Wed Apr 13 18:13:42 2016 +0300 Committer: vozerov-gridgain <[email protected]> Committed: Wed Apr 13 18:13:42 2016 +0300 ---------------------------------------------------------------------- .../platform/cache/query/PlatformContinuousQueryImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/e2f7631b/modules/core/src/main/java/org/apache/ignite/internal/processors/platform/cache/query/PlatformContinuousQueryImpl.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/internal/processors/platform/cache/query/PlatformContinuousQueryImpl.java b/modules/core/src/main/java/org/apache/ignite/internal/processors/platform/cache/query/PlatformContinuousQueryImpl.java index f8244a9..5410ef5 100644 --- a/modules/core/src/main/java/org/apache/ignite/internal/processors/platform/cache/query/PlatformContinuousQueryImpl.java +++ b/modules/core/src/main/java/org/apache/ignite/internal/processors/platform/cache/query/PlatformContinuousQueryImpl.java @@ -263,7 +263,7 @@ public class PlatformContinuousQueryImpl implements PlatformContinuousQuery { * @return Filter to be deployed on remote node. * @throws ObjectStreamException If failed. */ - protected Object writeReplace() throws ObjectStreamException { + Object writeReplace() throws ObjectStreamException { if (javaFilter != null) return javaFilter;
