Browse Source

Use valueOf rather than constructor for Integer and Boolean

Change-Id: I1c65b2e40ba6ec5860903b11b4631e014f3dc5ce
Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
tags/v4.6.0.201612231935-r
David Pursehouse 7 years ago
parent
commit
c0433f4fb7

+ 3
- 3
org.eclipse.jgit.http.apache/src/org/eclipse/jgit/transport/http/apache/HttpClientConnection.java View File

@@ -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) {

+ 1
- 1
org.eclipse.jgit.http.apache/src/org/eclipse/jgit/transport/http/apache/TemporaryBufferEntity.java View File

@@ -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);
}

/**

+ 1
- 1
org.eclipse.jgit.test/tst/org/eclipse/jgit/transport/WalkEncryptionTest.java View File

@@ -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