Consistent Lock field declaration (instead of ReentrantLock field type)

This commit is contained in:
Juergen Hoeller
2024-02-13 11:07:20 +01:00
parent 0b09f1e12f
commit b4153618a4
4 changed files with 9 additions and 7 deletions

View File

@@ -28,6 +28,7 @@ import java.util.Map;
import java.util.Properties;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;
import java.util.concurrent.locks.Lock;
import java.util.concurrent.locks.ReentrantLock;
import org.springframework.context.ResourceLoaderAware;
@@ -650,7 +651,7 @@ public class ReloadableResourceBundleMessageSource extends AbstractResourceBased
private volatile long refreshTimestamp = -2;
private final ReentrantLock refreshLock = new ReentrantLock();
private final Lock refreshLock = new ReentrantLock();
/** Cache to hold already generated MessageFormats per message code. */
private final ConcurrentMap<String, Map<Locale, MessageFormat>> cachedMessageFormats =

View File

@@ -18,6 +18,7 @@ package org.springframework.scheduling.concurrent;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.locks.Condition;
import java.util.concurrent.locks.Lock;
import java.util.concurrent.locks.ReentrantLock;
import org.springframework.context.SmartLifecycle;
@@ -36,7 +37,7 @@ final class ExecutorLifecycleDelegate implements SmartLifecycle {
private final ExecutorService executor;
private final ReentrantLock pauseLock = new ReentrantLock();
private final Lock pauseLock = new ReentrantLock();
private final Condition unpaused = this.pauseLock.newCondition();