File tree Expand file tree Collapse file tree 2 files changed +0
-22
lines changed
src/main/java/com/uber/cadence/internal/compatibility Expand file tree Collapse file tree 2 files changed +0
-22
lines changed Original file line number Diff line number Diff line change @@ -551,17 +551,6 @@ static ActivityLocalDispatchInfo activityLocalDispatchInfo(
551
551
.build ();
552
552
}
553
553
554
- static SupportedClientVersions supportedClientVersions (
555
- com .uber .cadence .SupportedClientVersions t ) {
556
- if (t == null ) {
557
- return SupportedClientVersions .newBuilder ().build ();
558
- }
559
- return SupportedClientVersions .newBuilder ()
560
- .setGoSdk (t .getGoSdk ())
561
- .setJavaSdk (t .getJavaSdk ())
562
- .build ();
563
- }
564
-
565
554
static Domain describeDomainResponseDomain (com .uber .cadence .DescribeDomainResponse t ) {
566
555
if (t == null ) {
567
556
return null ;
Original file line number Diff line number Diff line change @@ -265,17 +265,6 @@ static WorkflowQueryResult workflowQueryResult(com.uber.cadence.api.v1.WorkflowQ
265
265
return res ;
266
266
}
267
267
268
- static StickyExecutionAttributes stickyExecutionAttributes (
269
- com .uber .cadence .api .v1 .StickyExecutionAttributes t ) {
270
- if (t == null || t == com .uber .cadence .api .v1 .StickyExecutionAttributes .getDefaultInstance ()) {
271
- return null ;
272
- }
273
- StickyExecutionAttributes res = new StickyExecutionAttributes ();
274
- res .setWorkerTaskList (taskList (t .getWorkerTaskList ()));
275
- res .setScheduleToStartTimeoutSeconds (durationToSeconds (t .getScheduleToStartTimeout ()));
276
- return res ;
277
- }
278
-
279
268
static WorkerVersionInfo workerVersionInfo (com .uber .cadence .api .v1 .WorkerVersionInfo t ) {
280
269
if (t == null || t == com .uber .cadence .api .v1 .WorkerVersionInfo .getDefaultInstance ()) {
281
270
return null ;
You can’t perform that action at this time.
0 commit comments