[java-support] branch master updated: Checkstyle: Missing 'final' on method args.
Brent Putman
putmanb at georgetown.edu
Tue Oct 18 17:23:51 EDT 2016
This is an automated email from the git hooks/post-receive script.
putmanb pushed a commit to branch master
in repository java-support.
View the commit online:
http://git.shibboleth.net/view/?p=java-support.git;a=commit;h=c3555f351491fee2b46ce7454315f757ca031c24
The following commit(s) were added to refs/heads/master by this push:
new c3555f3 Checkstyle: Missing 'final' on method args.
c3555f3 is described below
commit c3555f351491fee2b46ce7454315f757ca031c24
Author: Brent Putman <putmanb at georgetown.edu>
AuthorDate: Tue Oct 18 17:23:50 2016 -0400
Checkstyle: Missing 'final' on method args.
---
.../utilities/java/support/httpclient/HttpClientBuilder.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/main/java/net/shibboleth/utilities/java/support/httpclient/HttpClientBuilder.java b/src/main/java/net/shibboleth/utilities/java/support/httpclient/HttpClientBuilder.java
index 8c5d728..bd05413 100644
--- a/src/main/java/net/shibboleth/utilities/java/support/httpclient/HttpClientBuilder.java
+++ b/src/main/java/net/shibboleth/utilities/java/support/httpclient/HttpClientBuilder.java
@@ -304,7 +304,7 @@ public class HttpClientBuilder {
*
* @param max the max total connection
*/
- public void setMaxConnectionsTotal(int max) {
+ public void setMaxConnectionsTotal(final int max) {
maxConnectionsTotal = max;
}
@@ -322,7 +322,7 @@ public class HttpClientBuilder {
*
* @param max the max connections per route
*/
- public void setMaxConnectionsPerRoute(int max) {
+ public void setMaxConnectionsPerRoute(final int max) {
maxConnectionsPerRoute = max;
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list