File tree Expand file tree Collapse file tree 1 file changed +0
-21
lines changed
src/main/java/com/uber/cadence/internal/compatibility/thrift Expand file tree Collapse file tree 1 file changed +0
-21
lines changed Original file line number Diff line number Diff line change @@ -275,27 +275,6 @@ static WorkerVersionInfo workerVersionInfo(com.uber.cadence.api.v1.WorkerVersion
275
275
return res ;
276
276
}
277
277
278
- static StartTimeFilter startTimeFilter (com .uber .cadence .api .v1 .StartTimeFilter t ) {
279
- if (t == null || t == com .uber .cadence .api .v1 .StartTimeFilter .getDefaultInstance ()) {
280
- return null ;
281
- }
282
- StartTimeFilter res = new StartTimeFilter ();
283
- res .setEarliestTime (timeToUnixNano (t .getEarliestTime ()));
284
- res .setLatestTime (timeToUnixNano (t .getLatestTime ()));
285
- return res ;
286
- }
287
-
288
- static WorkflowExecutionFilter workflowExecutionFilter (
289
- com .uber .cadence .api .v1 .WorkflowExecutionFilter t ) {
290
- if (t == null || t == com .uber .cadence .api .v1 .WorkflowExecutionFilter .getDefaultInstance ()) {
291
- return null ;
292
- }
293
- WorkflowExecutionFilter res = new WorkflowExecutionFilter ();
294
- res .setWorkflowId (t .getWorkflowId ());
295
- res .setRunId (t .getRunId ());
296
- return res ;
297
- }
298
-
299
278
static Map <String , ByteBuffer > payloadMap (Map <String , com .uber .cadence .api .v1 .Payload > t ) {
300
279
if (t == null ) {
301
280
return null ;
You can’t perform that action at this time.
0 commit comments