File tree Expand file tree Collapse file tree 1 file changed +0
-14
lines changed
src/main/java/com/uber/cadence/internal/compatibility/proto Expand file tree Collapse file tree 1 file changed +0
-14
lines changed Original file line number Diff line number Diff line change 49
49
import com .uber .cadence .api .v1 .Payload ;
50
50
import com .uber .cadence .api .v1 .PendingActivityInfo ;
51
51
import com .uber .cadence .api .v1 .PendingChildExecutionInfo ;
52
- import com .uber .cadence .api .v1 .PendingDecisionInfo ;
53
52
import com .uber .cadence .api .v1 .PollerInfo ;
54
53
import com .uber .cadence .api .v1 .QueryRejected ;
55
54
import com .uber .cadence .api .v1 .ResetPointInfo ;
@@ -539,19 +538,6 @@ static PendingChildExecutionInfo pendingChildExecutionInfo(
539
538
.build ();
540
539
}
541
540
542
- static PendingDecisionInfo pendingDecisionInfo (com .uber .cadence .PendingDecisionInfo t ) {
543
- if (t == null ) {
544
- return PendingDecisionInfo .newBuilder ().build ();
545
- }
546
- return PendingDecisionInfo .newBuilder ()
547
- .setState (EnumMapper .pendingDecisionState (t .getState ()))
548
- .setScheduledTime (unixNanoToTime (t .getScheduledTimestamp ()))
549
- .setStartedTime (unixNanoToTime (t .getStartedTimestamp ()))
550
- .setAttempt ((int ) t .getAttempt ())
551
- .setOriginalScheduledTime (unixNanoToTime (t .getOriginalScheduledTimestamp ()))
552
- .build ();
553
- }
554
-
555
541
static ActivityLocalDispatchInfo activityLocalDispatchInfo (
556
542
com .uber .cadence .ActivityLocalDispatchInfo t ) {
557
543
if (t == null ) {
You can’t perform that action at this time.
0 commit comments