Merge "Revert "[findBugs] Silence DM_STRING_CTOR on PacketLineIn""

This commit is contained in:
Matthias Sohn 2010-11-09 18:18:41 -05:00 committed by Code Review
commit ab7d08ec96
2 changed files with 2 additions and 9 deletions

View File

@ -38,12 +38,4 @@
<Class name="org.eclipse.jgit.util.TemporaryBuffer$BlockInputStream" />
<Bug pattern="UR_UNINIT_READ" />
</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>

View File

@ -57,7 +57,8 @@
import org.eclipse.jgit.util.RawParseUtils;
class PacketLineIn {
static final String END = new String("") /* must not string pool */;
/* must not string pool */
static final String END = new StringBuilder(0).toString();
static enum AckNackResult {
/** NAK */