dubbo-rpc-extensions/dubbo-rpc-rest/src/main/java/org/apache/dubbo/rpc/protocol/rest/extension/resteasy/filter/DubboBuiltResponse.java [37:48]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void setEntity(Object entity) {
        if (entity == null) {
            return;
        }

        if (entity.equals(this.entity)) {
            return;
        }
        //  reset entity true
        this.resetEntity = true;
        super.setEntity(entity);
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



dubbo-rpc-extensions/dubbo-rpc-rest/src/main/java/org/apache/dubbo/rpc/protocol/rest/resteasy/filter/DubboBuiltResponse.java [37:48]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void setEntity(Object entity) {
        if (entity == null) {
            return;
        }

        if (entity.equals(this.entity)) {
            return;
        }
        //  reset entity true
        this.resetEntity = true;
        super.setEntity(entity);
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



