The following document contains the results of FindBugs
FindBugs Version is 3.0.1
Threshold is medium
Effort is min
Class | Bugs |
---|---|
org.eclipse.jgit.transport.http.apache.HttpClientConnection | 3 |
org.eclipse.jgit.transport.http.apache.HttpClientConnection$1 | 1 |
org.eclipse.jgit.transport.http.apache.TemporaryBufferEntity | 1 |
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 | 319 | 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 | 286 | 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 | 290 | Medium |
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 | 374 | Medium |
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 | 108 | Medium |