File tree Expand file tree Collapse file tree 1 file changed +0
-26
lines changed
src/main/java/com/uber/cadence/internal/compatibility/proto Expand file tree Collapse file tree 1 file changed +0
-26
lines changed Original file line number Diff line number Diff line change 50
50
import com .uber .cadence .api .v1 .PendingActivityInfo ;
51
51
import com .uber .cadence .api .v1 .PendingChildExecutionInfo ;
52
52
import com .uber .cadence .api .v1 .PollerInfo ;
53
- import com .uber .cadence .api .v1 .QueryRejected ;
54
53
import com .uber .cadence .api .v1 .ResetPointInfo ;
55
54
import com .uber .cadence .api .v1 .ResetPoints ;
56
55
import com .uber .cadence .api .v1 .RetryPolicy ;
@@ -656,17 +655,6 @@ static Map<String, IndexedValueType> indexedValueTypeMap(
656
655
return v ;
657
656
}
658
657
659
- static List <DataBlob > dataBlobArray (List <com .uber .cadence .DataBlob > t ) {
660
- if (t == null ) {
661
- return Collections .emptyList ();
662
- }
663
- List <DataBlob > v = new ArrayList <>();
664
- for (int i = 0 ; i < t .size (); i ++) {
665
- v .add (dataBlob (t .get (i )));
666
- }
667
- return v ;
668
- }
669
-
670
658
static List <WorkflowExecutionInfo > workflowExecutionInfoArray (
671
659
List <com .uber .cadence .WorkflowExecutionInfo > t ) {
672
660
if (t == null ) {
@@ -689,18 +677,4 @@ static List<Domain> describeDomainResponseArray(List<com.uber.cadence.DescribeDo
689
677
}
690
678
return v ;
691
679
}
692
-
693
- static List <TaskListPartitionMetadata > taskListPartitionMetadataArray (
694
- List <com .uber .cadence .TaskListPartitionMetadata > t ) {
695
- if (t == null ) {
696
- return Collections .emptyList ();
697
- }
698
- List <TaskListPartitionMetadata > v = new ArrayList <>();
699
- for (int i = 0 ; i < t .size (); i ++) {
700
- v .add (taskListPartitionMetadata (t .get (i )));
701
- }
702
- return v ;
703
- }
704
-
705
-
706
680
}
You can’t perform that action at this time.
0 commit comments