Browse Source

Merge "[findBugs] Silence DM_STRING_CTOR on PacketLineIn"

stable-0.10
Chris Aniszczyk 14 years ago committed by Code Review
parent
commit
83019318c6
  1. 8
      org.eclipse.jgit/findBugs/FindBugsExcludeFilter.xml

8
org.eclipse.jgit/findBugs/FindBugsExcludeFilter.xml

@ -38,4 +38,12 @@
<Class name="org.eclipse.jgit.util.TemporaryBuffer$BlockInputStream" /> <Class name="org.eclipse.jgit.util.TemporaryBuffer$BlockInputStream" />
<Bug pattern="UR_UNINIT_READ" /> <Bug pattern="UR_UNINIT_READ" />
</Match> </Match>
<!-- Silence invoke inefficient String constructor, we do not want to pool
here -->
<Match>
<Class name="org.eclipse.jgit.transport.PacketLineIn" />
<Method name="&lt;clinit&gt;" />
<Bug pattern="DM_STRING_CTOR" />
</Match>
</FindBugsFilter> </FindBugsFilter>

Loading…
Cancel
Save