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 4949import com .uber .cadence .api .v1 .Payload ;
5050import com .uber .cadence .api .v1 .PendingActivityInfo ;
5151import com .uber .cadence .api .v1 .PendingChildExecutionInfo ;
52- import com .uber .cadence .api .v1 .PendingDecisionInfo ;
5352import com .uber .cadence .api .v1 .PollerInfo ;
5453import com .uber .cadence .api .v1 .QueryRejected ;
5554import com .uber .cadence .api .v1 .ResetPointInfo ;
@@ -539,19 +538,6 @@ static PendingChildExecutionInfo pendingChildExecutionInfo(
539538 .build ();
540539 }
541540
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-
555541 static ActivityLocalDispatchInfo activityLocalDispatchInfo (
556542 com .uber .cadence .ActivityLocalDispatchInfo t ) {
557543 if (t == null ) {
You can’t perform that action at this time.
0 commit comments