@@ -192,13 +192,13 @@ class InlineDelegateByteBuddyMockMaker
192
192
private final BytecodeGenerator bytecodeGenerator ;
193
193
194
194
private final WeakConcurrentMap <Object , MockMethodInterceptor > mocks =
195
- new WeakConcurrentMap . WithInlinedExpunction < Object , MockMethodInterceptor >( );
195
+ new WeakConcurrentMap <>( false );
196
196
197
197
private final DetachedThreadLocal <Map <Class <?>, MockMethodInterceptor >> mockedStatics =
198
- new DetachedThreadLocal <>(DetachedThreadLocal .Cleaner .INLINE );
198
+ new DetachedThreadLocal <>(DetachedThreadLocal .Cleaner .MANUAL );
199
199
200
200
private final DetachedThreadLocal <Map <Class <?>, BiConsumer <Object , MockedConstruction .Context >>>
201
- mockedConstruction = new DetachedThreadLocal <>(DetachedThreadLocal .Cleaner .INLINE );
201
+ mockedConstruction = new DetachedThreadLocal <>(DetachedThreadLocal .Cleaner .MANUAL );
202
202
203
203
private final ThreadLocal <Boolean > mockitoConstruction = ThreadLocal .withInitial (() -> false );
204
204
@@ -382,6 +382,7 @@ private <T> T doCreateMock(
382
382
if (instance instanceof MockAccess ) {
383
383
((MockAccess ) instance ).setMockitoInterceptor (mockMethodInterceptor );
384
384
}
385
+ mocks .expungeStaleEntries ();
385
386
return instance ;
386
387
} catch (InstantiationException e ) {
387
388
throw new MockitoException (
@@ -496,6 +497,7 @@ public void resetMock(Object mock, MockHandler newHandler, MockCreationSettings
496
497
if (mock instanceof MockAccess ) {
497
498
((MockAccess ) mock ).setMockitoInterceptor (mockMethodInterceptor );
498
499
}
500
+ mocks .expungeStaleEntries ();
499
501
}
500
502
}
501
503
@@ -570,6 +572,7 @@ public <T> StaticMockControl<T> createStaticMock(
570
572
interceptors = new WeakHashMap <>();
571
573
mockedStatics .set (interceptors );
572
574
}
575
+ mockedStatics .getBackingMap ().expungeStaleEntries ();
573
576
574
577
return new InlineStaticMockControl <>(type , interceptors , settings , handler );
575
578
}
@@ -598,6 +601,7 @@ public <T> ConstructionMockControl<T> createConstructionMock(
598
601
interceptors = new WeakHashMap <>();
599
602
mockedConstruction .set (interceptors );
600
603
}
604
+ mockedConstruction .getBackingMap ().expungeStaleEntries ();
601
605
602
606
return new InlineConstructionMockControl <>(
603
607
type , settingsFactory , handlerFactory , mockInitializer , interceptors );
0 commit comments