mirror of https://github.com/dapr/java-sdk.git
Locking not needed (#173)
This commit is contained in:
parent
0f0a331daf
commit
381fca49fd
|
|
@ -72,7 +72,7 @@ public abstract class AbstractActor {
|
||||||
runtimeContext.getActorTypeInformation().getName(),
|
runtimeContext.getActorTypeInformation().getName(),
|
||||||
id);
|
id);
|
||||||
this.actorTrace = runtimeContext.getActorTrace();
|
this.actorTrace = runtimeContext.getActorTrace();
|
||||||
this.timers = Collections.synchronizedMap(new HashMap<>());
|
this.timers = new HashMap<>();
|
||||||
this.started = false;
|
this.started = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue