saga-core/src/main/java/org/apache/servicecomb/saga/core/Compensation.java [40:47]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Override
    public SagaResponse send(String address) {
      return SUCCESSFUL_SAGA_RESPONSE;
    }

    @Override
    public SagaResponse send(String address, SagaResponse response) {
      return send(address);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



saga-core/src/main/java/org/apache/servicecomb/saga/core/Transaction.java [45:52]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Override
    public SagaResponse send(String address) {
      return SUCCESSFUL_SAGA_RESPONSE;
    }

    @Override
    public SagaResponse send(String address, SagaResponse response) {
      return send(address);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



