removed a call to intern()

git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@2914 f5eafffb-2e1d-0410-98e4-8ec43c5233c4
This commit is contained in:
msridhar1 2008-06-26 18:12:14 +00:00
parent 553af73e87
commit 6b82b15311
1 changed files with 2 additions and 1 deletions

View File

@ -353,7 +353,8 @@ public final class ConstantPoolParser implements ClassConstants {
throw invalidUtf8(i, offset);
}
}
s = buf.toString().intern();
// s = buf.toString().intern(); // removed intern() call --MS
s = buf.toString();
cpItems[i] = s;
}
return s;