hessian-lite/src/main/java/com/alibaba/com/caucho/hessian/io/JavaUnsharedSerializer.java [66:75]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void writeObject(Object obj, AbstractHessianOutput out)
            throws IOException {
        boolean oldUnshared = out.setUnshared(true);

        try {
            super.writeObject(obj, out);
        } finally {
            out.setUnshared(oldUnshared);
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



hessian-lite/src/main/java/com/alibaba/com/caucho/hessian/io/UnsafeUnsharedSerializer.java [66:75]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void writeObject(Object obj, AbstractHessianOutput out)
            throws IOException {
        boolean oldUnshared = out.setUnshared(true);

        try {
            super.writeObject(obj, out);
        } finally {
            out.setUnshared(oldUnshared);
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



