26
26
import org .junit .jupiter .api .extension .ExtensionContext .Namespace ;
27
27
import org .junit .jupiter .api .extension .ExtensionContextException ;
28
28
import org .junit .platform .commons .meta .API ;
29
- import org .junit .platform .commons .util .Preconditions ;
30
29
31
30
/**
32
31
* {@code ExtensionValuesStore} is used inside implementations of
@@ -46,7 +45,7 @@ public ExtensionValuesStore(ExtensionValuesStore parentStore) {
46
45
47
46
Object get (Namespace namespace , Object key ) {
48
47
Supplier <Object > storedValue = getStoredValue (new CompositeKey (namespace , key ));
49
- return storedValue == null ? null : storedValue .get ();
48
+ return ( storedValue != null ? storedValue .get () : null );
50
49
}
51
50
52
51
<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
74
73
}
75
74
76
75
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 );
82
77
}
83
78
84
79
Object remove (Namespace namespace , Object key ) {
@@ -146,11 +141,13 @@ public boolean equals(Object o) {
146
141
public int hashCode () {
147
142
return Objects .hash (namespace , key );
148
143
}
144
+
149
145
}
150
146
151
147
private static class MemoizingSupplier implements Supplier <Object > {
152
148
153
149
private static final Object NO_VALUE_SET = new Object ();
150
+
154
151
private final Lock lock = new ReentrantLock ();
155
152
private final Supplier <Object > delegate ;
156
153
private volatile Object value = NO_VALUE_SET ;
@@ -174,5 +171,7 @@ public Object get() {
174
171
}
175
172
return value ;
176
173
}
174
+
177
175
}
176
+
178
177
}
0 commit comments