getObject on String should really just return the string

This commit is contained in:
Adam
2015-01-26 02:25:42 -05:00
parent 55dca4fa9b
commit cec4f0ac59
7 changed files with 34 additions and 2 deletions

View File

@@ -21,6 +21,6 @@ public class String extends PoolEntry
@Override
public Object getObject()
{
return stringIndex;
return this.getPool().getEntry(stringIndex).getObject();
}
}