You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by gg...@apache.org on 2016/06/23 20:13:00 UTC

svn commit: r1750007 - in /httpcomponents/httpcore/branches/4.4.x: httpcore-nio/src/main/java/org/apache/http/impl/nio/reactor/IOReactorConfig.java httpcore/src/main/java/org/apache/http/config/SocketConfig.java

Author: ggregory
Date: Thu Jun 23 20:13:00 2016
New Revision: 1750007

URL: http://svn.apache.org/viewvc?rev=1750007&view=rev
Log:
Add final modifier to private fields.

Modified:
    httpcomponents/httpcore/branches/4.4.x/httpcore-nio/src/main/java/org/apache/http/impl/nio/reactor/IOReactorConfig.java
    httpcomponents/httpcore/branches/4.4.x/httpcore/src/main/java/org/apache/http/config/SocketConfig.java

Modified: httpcomponents/httpcore/branches/4.4.x/httpcore-nio/src/main/java/org/apache/http/impl/nio/reactor/IOReactorConfig.java
URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/branches/4.4.x/httpcore-nio/src/main/java/org/apache/http/impl/nio/reactor/IOReactorConfig.java?rev=1750007&r1=1750006&r2=1750007&view=diff
==============================================================================
--- httpcomponents/httpcore/branches/4.4.x/httpcore-nio/src/main/java/org/apache/http/impl/nio/reactor/IOReactorConfig.java (original)
+++ httpcomponents/httpcore/branches/4.4.x/httpcore-nio/src/main/java/org/apache/http/impl/nio/reactor/IOReactorConfig.java Thu Jun 23 20:13:00 2016
@@ -53,7 +53,7 @@ public final class IOReactorConfig imple
     private int connectTimeout;
     private int sndBufSize;
     private int rcvBufSize;
-    private int backlogSize;
+    private final int backlogSize;
 
     @Deprecated
     public IOReactorConfig() {

Modified: httpcomponents/httpcore/branches/4.4.x/httpcore/src/main/java/org/apache/http/config/SocketConfig.java
URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/branches/4.4.x/httpcore/src/main/java/org/apache/http/config/SocketConfig.java?rev=1750007&r1=1750006&r2=1750007&view=diff
==============================================================================
--- httpcomponents/httpcore/branches/4.4.x/httpcore/src/main/java/org/apache/http/config/SocketConfig.java (original)
+++ httpcomponents/httpcore/branches/4.4.x/httpcore/src/main/java/org/apache/http/config/SocketConfig.java Thu Jun 23 20:13:00 2016
@@ -48,7 +48,7 @@ public class SocketConfig implements Clo
     private final boolean tcpNoDelay;
     private final int sndBufSize;
     private final int rcvBufSize;
-    private int backlogSize;
+    private final int backlogSize;
 
     SocketConfig(
             final int soTimeout,