Locking not needed (#173)

This commit is contained in:
Leon Mai 2020-01-30 12:10:01 -08:00 committed by GitHub
parent 0f0a331daf
commit 381fca49fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ public abstract class AbstractActor {
runtimeContext.getActorTypeInformation().getName(),
id);
this.actorTrace = runtimeContext.getActorTrace();
this.timers = Collections.synchronizedMap(new HashMap<>());
this.timers = new HashMap<>();
this.started = false;
}