FindBugs Bug Detector Report

The following document contains the results of FindBugs

FindBugs Version is 3.0.1

Threshold is medium

Effort is min

Summary

Classes Bugs Errors Missing Classes
5 5 0 0

org.eclipse.jgit.transport.http.apache.HttpClientConnection

Bug Category Details Line Priority
org.eclipse.jgit.transport.http.apache.HttpClientConnection.setInstanceFollowRedirects(boolean) invokes inefficient Boolean constructor; use Boolean.valueOf(...) instead PERFORMANCE DM_BOOLEAN_CTOR 311 Medium
org.eclipse.jgit.transport.http.apache.HttpClientConnection.setConnectTimeout(int) invokes inefficient new Integer(int) constructor; use Integer.valueOf(int) instead PERFORMANCE DM_NUMBER_CTOR 278 Medium
org.eclipse.jgit.transport.http.apache.HttpClientConnection.setReadTimeout(int) invokes inefficient new Integer(int) constructor; use Integer.valueOf(int) instead PERFORMANCE DM_NUMBER_CTOR 282 Medium

org.eclipse.jgit.transport.http.apache.HttpClientConnection$1

Bug Category Details Line Priority
Return value of javax.net.ssl.HostnameVerifier.verify(String, SSLSession) ignored, but method has no side effect STYLE RV_RETURN_VALUE_IGNORED_NO_SIDE_EFFECT 366 Medium

org.eclipse.jgit.transport.http.apache.TemporaryBufferEntity

Bug Category Details Line Priority
org.eclipse.jgit.transport.http.apache.TemporaryBufferEntity.setContentLength(int) invokes inefficient new Integer(int) constructor; use Integer.valueOf(int) instead PERFORMANCE DM_NUMBER_CTOR 107 Medium