227228229230231232233234235
uLong.write(out); } /** read short value */ static short readShort(DataInputStream in) throws IOException { ShortWritable uShort = TL_DATA.get().U_SHORT; uShort.readFields(in); return uShort.get(); }
234235236237238239240241242
return uShort.get(); } /** write short value */ static void writeShort(short value, DataOutputStream out) throws IOException { ShortWritable uShort = TL_DATA.get().U_SHORT; uShort.set(value); uShort.write(out); }
381382383384385386387388389
uInt.write(out); } /** read short value */ static short readShort(DataInput in) throws IOException { ShortWritable uShort = TL_DATA.get().U_SHORT; uShort.readFields(in); return uShort.get(); }
388389390391392393394395396
378379380381382383384385386
385386387388389390391392393
228229230231232233234235236
235236237238239240241242243
392393394395396397398399400