Skip to content

Commit 0beefe8

Browse files
committed
remove static
Signed-off-by: addjuarez <6789375+addjuarez@users.noreply.github.com>
1 parent 3d19eb4 commit 0beefe8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sdk-workflows/src/main/java/io/dapr/workflows/runtime/WorkflowRuntimeBuilder.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ public class WorkflowRuntimeBuilder {
2626
private static volatile WorkflowRuntime instance;
2727
private DurableTaskGrpcWorkerBuilder builder;
2828
private static final Logger LOGGER = LoggerFactory.getLogger(WorkflowRuntimeBuilder.class);
29-
private static volatile Set<String> activity_Set = new HashSet<String>();
30-
private static volatile Set<String> workflow_Set = new HashSet<String>();
29+
private volatile Set<String> activity_Set = new HashSet<String>();
30+
private volatile Set<String> workflow_Set = new HashSet<String>();
3131

3232

3333
public WorkflowRuntimeBuilder() {

0 commit comments

Comments
 (0)