Browse Source

Use valueOf rather than constructor for Integer and Boolean

Change-Id: I1c65b2e40ba6ec5860903b11b4631e014f3dc5ce
Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
stable-4.6
David Pursehouse 8 years ago
parent
commit
c0433f4fb7
  1. 6
      org.eclipse.jgit.http.apache/src/org/eclipse/jgit/transport/http/apache/HttpClientConnection.java
  2. 2
      org.eclipse.jgit.http.apache/src/org/eclipse/jgit/transport/http/apache/TemporaryBufferEntity.java
  3. 2
      org.eclipse.jgit.test/tst/org/eclipse/jgit/transport/WalkEncryptionTest.java

6
org.eclipse.jgit.http.apache/src/org/eclipse/jgit/transport/http/apache/HttpClientConnection.java

@ -295,11 +295,11 @@ public class HttpClientConnection implements HttpConnection {
}
public void setConnectTimeout(int timeout) {
this.timeout = new Integer(timeout);
this.timeout = Integer.valueOf(timeout);
}
public void setReadTimeout(int readTimeout) {
this.readTimeout = new Integer(readTimeout);
this.readTimeout = Integer.valueOf(readTimeout);
}
public String getContentType() {
@ -328,7 +328,7 @@ public class HttpClientConnection implements HttpConnection {
}
public void setInstanceFollowRedirects(boolean followRedirects) {
this.followRedirects = new Boolean(followRedirects);
this.followRedirects = Boolean.valueOf(followRedirects);
}
public void setDoOutput(boolean dooutput) {

2
org.eclipse.jgit.http.apache/src/org/eclipse/jgit/transport/http/apache/TemporaryBufferEntity.java

@ -105,7 +105,7 @@ public class TemporaryBufferEntity extends AbstractHttpEntity
* @param contentLength
*/
public void setContentLength(int contentLength) {
this.contentLength = new Integer(contentLength);
this.contentLength = Integer.valueOf(contentLength);
}
/**

2
org.eclipse.jgit.test/tst/org/eclipse/jgit/transport/WalkEncryptionTest.java

@ -576,7 +576,7 @@ public class WalkEncryptionTest {
.forName("javax.crypto.JceSecurity")
.getDeclaredField("isRestricted");
isRestricted.setAccessible(true);
isRestricted.set(null, new Boolean(restrictedOn));
isRestricted.set(null, Boolean.valueOf(restrictedOn));
} catch (Throwable e) {
logger.info(
"Could not setup JCE security policy restrictions.");

Loading…
Cancel
Save