blob: f40459822441993b44208b95d4cb1e4d26205db7 [file] [log] [blame]
package com.gemstone.gemfire.codeAnalysis.decode.cp;
import java.io.*;
public class CpString extends Cp {
int string_index; // har har - points to a Utf8 holding the string's guts
CpString( DataInputStream source ) throws IOException {
string_index = source.readUnsignedShort();
}
}