The following document contains the results of FindBugs
FindBugs Version is 3.0.0
Threshold is medium
Effort is min
Class | Bugs |
---|---|
org.eclipse.jgit.transport.http.apache.HttpClientConnection | 3 |
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 | 302 | 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 | 269 | 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 | 273 | 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 | 107 | Medium |