Skip to content

Commit 0130dcb

Browse files
authored
remove blob array mapper (#726)
1 parent 5ad823c commit 0130dcb

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

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

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -348,16 +348,6 @@ static Map<String, WorkflowQueryResult> workflowQueryResultMap(
348348
return v;
349349
}
350350

351-
static DataBlob dataBlob(com.uber.cadence.DataBlob t) {
352-
if (t == null) {
353-
return DataBlob.newBuilder().build();
354-
}
355-
return DataBlob.newBuilder()
356-
.setEncodingType(encodingType(t.getEncodingType()))
357-
.setData(arrayToByteString(t.getData()))
358-
.build();
359-
}
360-
361351
static ExternalExecutionInfo externalExecutionInfo(
362352
com.uber.cadence.WorkflowExecution we, long initiatedID) {
363353
if (we == null && initiatedID == 0) {

0 commit comments

Comments
 (0)