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 5050import com .uber .cadence .api .v1 .PendingActivityInfo ;
5151import com .uber .cadence .api .v1 .PendingChildExecutionInfo ;
5252import com .uber .cadence .api .v1 .PollerInfo ;
53- import com .uber .cadence .api .v1 .QueryRejected ;
5453import com .uber .cadence .api .v1 .ResetPointInfo ;
5554import com .uber .cadence .api .v1 .ResetPoints ;
5655import com .uber .cadence .api .v1 .RetryPolicy ;
@@ -656,17 +655,6 @@ static Map<String, IndexedValueType> indexedValueTypeMap(
656655 return v ;
657656 }
658657
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-
670658 static List <WorkflowExecutionInfo > workflowExecutionInfoArray (
671659 List <com .uber .cadence .WorkflowExecutionInfo > t ) {
672660 if (t == null ) {
@@ -689,18 +677,4 @@ static List<Domain> describeDomainResponseArray(List<com.uber.cadence.DescribeDo
689677 }
690678 return v ;
691679 }
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-
706680}
You can’t perform that action at this time.
0 commit comments