880881882883884885886887888889890
public void writeExternal(final ObjectOutput out) throws IOException { out.writeInt(this.size()); this.forEach(new CheckedByteProcedure() { public void safeValue(byte each) throws IOException { out.writeByte(each); }
445446447448449450451452453454455
public void writeExternal(final ObjectOutput out) throws IOException { out.writeInt(this.stack.size()); try { this.stack.forEach(new CheckedByteProcedure() { @Override public void safeValue(byte item) throws IOException { out.writeByte(item);
5152535455565758596061
public void writeExternal(final ObjectOutput out) throws IOException { out.writeInt(this.set.size()); try { this.set.forEach(new CheckedByteProcedure() { @Override public void safeValue(byte item) throws Exception { out.writeByte(item);