You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by bo...@apache.org on 2014/06/09 15:48:17 UTC

[12/32] git commit: STORM-297: use primitive type int instead of Integer

STORM-297: use primitive type int instead of Integer


Project: http://git-wip-us.apache.org/repos/asf/incubator-storm/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-storm/commit/fe68fd96
Tree: http://git-wip-us.apache.org/repos/asf/incubator-storm/tree/fe68fd96
Diff: http://git-wip-us.apache.org/repos/asf/incubator-storm/diff/fe68fd96

Branch: refs/heads/master
Commit: fe68fd968bdfab3d902f86956ae04bd3d46b444e
Parents: 6b9da08
Author: Sean Zhong <cl...@gmail.com>
Authored: Tue May 20 11:34:03 2014 +0800
Committer: Sean Zhong <cl...@gmail.com>
Committed: Tue May 20 11:34:03 2014 +0800

----------------------------------------------------------------------
 storm-core/src/jvm/backtype/storm/messaging/netty/Client.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-storm/blob/fe68fd96/storm-core/src/jvm/backtype/storm/messaging/netty/Client.java
----------------------------------------------------------------------
diff --git a/storm-core/src/jvm/backtype/storm/messaging/netty/Client.java b/storm-core/src/jvm/backtype/storm/messaging/netty/Client.java
index 18582b4..00ca449 100644
--- a/storm-core/src/jvm/backtype/storm/messaging/netty/Client.java
+++ b/storm-core/src/jvm/backtype/storm/messaging/netty/Client.java
@@ -52,7 +52,7 @@ public class Client implements IConnection {
     private final int buffer_size;
     private boolean closing;
 
-    private Integer messageBatchSize;
+    private int messageBatchSize;
     
     private AtomicLong pendings;