File tree Expand file tree Collapse file tree 1 file changed +0
-20
lines changed
src/main/java/com/uber/cadence/internal/compatibility/proto Expand file tree Collapse file tree 1 file changed +0
-20
lines changed Original file line number Diff line number Diff line change @@ -610,15 +610,6 @@ static TaskListPartitionMetadata taskListPartitionMetadata(
610
610
.build ();
611
611
}
612
612
613
- static QueryRejected queryRejected (com .uber .cadence .QueryRejected t ) {
614
- if (t == null ) {
615
- return null ;
616
- }
617
- return QueryRejected .newBuilder ()
618
- .setCloseStatus (workflowExecutionCloseStatus (t .getCloseStatus ()))
619
- .build ();
620
- }
621
-
622
613
static List <PollerInfo > pollerInfoArray (List <com .uber .cadence .PollerInfo > t ) {
623
614
if (t == null ) {
624
615
return Collections .emptyList ();
@@ -711,16 +702,5 @@ static List<TaskListPartitionMetadata> taskListPartitionMetadataArray(
711
702
return v ;
712
703
}
713
704
714
- static Map <String , WorkflowQuery > WorkflowQueryMap (
715
- Map <String , com .uber .cadence .WorkflowQuery > t ) {
716
- if (t == null ) {
717
- return Collections .emptyMap ();
718
- }
719
- Map <String , WorkflowQuery > v = new HashMap <>();
720
- for (String key : t .keySet ()) {
721
- v .put (key , workflowQuery (t .get (key )));
722
- }
723
- return v ;
724
- }
725
705
726
706
}
You can’t perform that action at this time.
0 commit comments