Skip to content

Commit 6316bd0

Browse files
committed
Polishing
1 parent 4c5a65e commit 6316bd0

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

junit-jupiter-engine/src/main/java/org/junit/jupiter/engine/execution/ExtensionValuesStore.java

+6-7
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
import org.junit.jupiter.api.extension.ExtensionContext.Namespace;
2727
import org.junit.jupiter.api.extension.ExtensionContextException;
2828
import org.junit.platform.commons.meta.API;
29-
import org.junit.platform.commons.util.Preconditions;
3029

3130
/**
3231
* {@code ExtensionValuesStore} is used inside implementations of
@@ -46,7 +45,7 @@ public ExtensionValuesStore(ExtensionValuesStore parentStore) {
4645

4746
Object get(Namespace namespace, Object key) {
4847
Supplier<Object> storedValue = getStoredValue(new CompositeKey(namespace, key));
49-
return storedValue == null ? null : storedValue.get();
48+
return (storedValue != null ? storedValue.get() : null);
5049
}
5150

5251
<T> T get(Namespace namespace, Object key, Class<T> requiredType) {
@@ -74,11 +73,7 @@ <K, V> V getOrComputeIfAbsent(Namespace namespace, K key, Function<K, V> default
7473
}
7574

7675
void put(Namespace namespace, Object key, Object value) {
77-
Preconditions.notNull(namespace, "Namespace must not be null");
78-
Preconditions.notNull(key, "key must not be null");
79-
80-
CompositeKey compositeKey = new CompositeKey(namespace, key);
81-
storedValues.put(compositeKey, () -> value);
76+
storedValues.put(new CompositeKey(namespace, key), () -> value);
8277
}
8378

8479
Object remove(Namespace namespace, Object key) {
@@ -146,11 +141,13 @@ public boolean equals(Object o) {
146141
public int hashCode() {
147142
return Objects.hash(namespace, key);
148143
}
144+
149145
}
150146

151147
private static class MemoizingSupplier implements Supplier<Object> {
152148

153149
private static final Object NO_VALUE_SET = new Object();
150+
154151
private final Lock lock = new ReentrantLock();
155152
private final Supplier<Object> delegate;
156153
private volatile Object value = NO_VALUE_SET;
@@ -174,5 +171,7 @@ public Object get() {
174171
}
175172
return value;
176173
}
174+
177175
}
176+
178177
}

0 commit comments

Comments
 (0)