Skip to content

Commit 5814f3e

Browse files
authored
remove pending activity mapper (#712)
1 parent 25c36fa commit 5814f3e

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

src/main/java/com/uber/cadence/internal/compatibility/proto/TypeMapper.java

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -641,18 +641,6 @@ static List<ResetPointInfo> resetPointInfoArray(List<com.uber.cadence.ResetPoint
641641
return v;
642642
}
643643

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-
656644
static List<PendingChildExecutionInfo> pendingChildExecutionInfoArray(
657645
List<com.uber.cadence.PendingChildExecutionInfo> t) {
658646
if (t == null) {

0 commit comments

Comments
 (0)