Fixing build warning message. CacheFactory.java:341: warning - @return tag has no arguments. CacheFactory.java:357: warning - @return tag has no arguments.
Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/b3d00edb Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/b3d00edb Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/b3d00edb Branch: refs/heads/feature/GEM-983 Commit: b3d00edb355a224279913f7e7c0214b57ba864f0 Parents: 29bb98a Author: Anil <[email protected]> Authored: Fri Oct 28 17:24:20 2016 -0700 Committer: Anil <[email protected]> Committed: Fri Oct 28 17:25:23 2016 -0700 ---------------------------------------------------------------------- .../src/main/java/org/apache/geode/cache/CacheFactory.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/b3d00edb/geode-core/src/main/java/org/apache/geode/cache/CacheFactory.java ---------------------------------------------------------------------- diff --git a/geode-core/src/main/java/org/apache/geode/cache/CacheFactory.java b/geode-core/src/main/java/org/apache/geode/cache/CacheFactory.java index 15557bb..0772dcf 100644 --- a/geode-core/src/main/java/org/apache/geode/cache/CacheFactory.java +++ b/geode-core/src/main/java/org/apache/geode/cache/CacheFactory.java @@ -336,7 +336,7 @@ public class CacheFactory { * method on this object * * @param securityManager - * @return + * @return this CacheFactory */ public CacheFactory setSecurityManager(SecurityManager securityManager) { this.cacheConfig.setSecurityManager(securityManager); @@ -352,7 +352,7 @@ public class CacheFactory { * method on this object * * @param postProcessor - * @return + * @return this CacheFactory */ public CacheFactory setPostProcessor(PostProcessor postProcessor) { this.cacheConfig.setPostProcessor(postProcessor);
