445446447448449450451452453454455
public void writeExternal(final ObjectOutput out) throws IOException { out.writeInt(this.stack.size()); try { this.stack.forEach(new CheckedIntProcedure() { @Override public void safeValue(int item) throws IOException { out.writeInt(item);
5152535455565758596061
public void writeExternal(final ObjectOutput out) throws IOException { out.writeInt(this.set.size()); try { this.set.forEach(new CheckedIntProcedure() { @Override public void safeValue(int item) throws Exception { out.writeInt(item);