You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by yz...@apache.org on 2015/05/06 14:18:23 UTC

incubator-ignite git commit: review

Repository: incubator-ignite
Updated Branches:
  refs/heads/ignite-836_2 359680dbd -> a50abae3b


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/a50abae3
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/a50abae3
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/a50abae3

Branch: refs/heads/ignite-836_2
Commit: a50abae3bc0902430218abecc9a7e2e6ad63fe6f
Parents: 359680d
Author: Yakov Zhdanov <yz...@gridgain.com>
Authored: Wed May 6 15:18:15 2015 +0300
Committer: Yakov Zhdanov <yz...@gridgain.com>
Committed: Wed May 6 15:18:15 2015 +0300

----------------------------------------------------------------------
 .../internal/managers/discovery/CustomMessageWrapper.java     | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/a50abae3/modules/core/src/main/java/org/apache/ignite/internal/managers/discovery/CustomMessageWrapper.java
----------------------------------------------------------------------
diff --git a/modules/core/src/main/java/org/apache/ignite/internal/managers/discovery/CustomMessageWrapper.java b/modules/core/src/main/java/org/apache/ignite/internal/managers/discovery/CustomMessageWrapper.java
index 9575cc7..1f02eae 100644
--- a/modules/core/src/main/java/org/apache/ignite/internal/managers/discovery/CustomMessageWrapper.java
+++ b/modules/core/src/main/java/org/apache/ignite/internal/managers/discovery/CustomMessageWrapper.java
@@ -5,9 +5,9 @@
  * The ASF licenses this file to You under the Apache License, Version 2.0
  * (the "License"); you may not use this file except in compliance with
  * the License.  You may obtain a copy of the License at
- * 
+ *
  *      http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -30,7 +30,7 @@ class CustomMessageWrapper implements DiscoverySpiCustomMessage {
     /**
      * @param delegate Delegate.
      */
-    CustomMessageWrapper(@NotNull DiscoveryCustomMessage delegate) {
+    CustomMessageWrapper(DiscoveryCustomMessage delegate) {
         this.delegate = delegate;
     }
 
@@ -44,7 +44,6 @@ class CustomMessageWrapper implements DiscoverySpiCustomMessage {
     /**
      * @return Delegate.
      */
-    @NotNull
     public DiscoveryCustomMessage delegate() {
         return delegate;
     }