dont synchronize access to the function that is supposed to synchronize by hand

This commit is contained in:
Aidan Hahn 2019-05-23 18:18:13 -07:00
parent c40f8f0a62
commit f14265fe5b
No known key found for this signature in database
GPG key ID: 327711E983899316

View file

@ -228,7 +228,7 @@ class ProcessManager {
* Waits for a predefined timeout period and then grabs the mutex
* Throws TimeoutException when it fails to get the lock.
*/
private synchronized void getLock() throws TimeoutException {
private void getLock() throws TimeoutException {
Future<Object> future = this.threadPool.submit(this.lockCallable);
try {