We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25c36fa commit 5814f3eCopy full SHA for 5814f3e
src/main/java/com/uber/cadence/internal/compatibility/proto/TypeMapper.java
@@ -641,18 +641,6 @@ static List<ResetPointInfo> resetPointInfoArray(List<com.uber.cadence.ResetPoint
641
return v;
642
}
643
644
- static List<PendingActivityInfo> pendingActivityInfoArray(
645
- List<com.uber.cadence.PendingActivityInfo> t) {
646
- if (t == null) {
647
- return Collections.emptyList();
648
- }
649
- List<PendingActivityInfo> v = new ArrayList<>();
650
- for (int i = 0; i < t.size(); i++) {
651
- v.add(pendingActivityInfo(t.get(i)));
652
653
- return v;
654
655
-
656
static List<PendingChildExecutionInfo> pendingChildExecutionInfoArray(
657
List<com.uber.cadence.PendingChildExecutionInfo> t) {
658
if (t == null) {
0 commit comments