Skip to content

Commit ae43a42

Browse files
authored
remove acitivty local dispatch info proto mapper (#713)
1 parent 5814f3e commit ae43a42

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

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

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -723,15 +723,4 @@ static Map<String, WorkflowQuery> WorkflowQueryMap(
723723
return v;
724724
}
725725

726-
static Map<String, ActivityLocalDispatchInfo> activityLocalDispatchInfoMap(
727-
Map<String, com.uber.cadence.ActivityLocalDispatchInfo> t) {
728-
if (t == null) {
729-
return Collections.emptyMap();
730-
}
731-
Map<String, ActivityLocalDispatchInfo> v = new HashMap<>();
732-
for (String key : t.keySet()) {
733-
v.put(key, activityLocalDispatchInfo(t.get(key)));
734-
}
735-
return v;
736-
}
737726
}

0 commit comments

Comments
 (0)