We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fde4cb9 commit 4d6536eCopy full SHA for 4d6536e
base/src/main/java/software/xdev/tci/serviceloading/TCIServiceLoader.java
@@ -57,6 +57,7 @@ public <T> T service(final Class<T> clazz)
57
* @implNote This method uses best effort thread safety. It WILL fail when another Thread that didn't inherit from
58
* the current Thread is causing a deadlock, for example <code>ForkJoinPool.commonPool</code>
59
*/
60
+ @SuppressWarnings("PMD.AvoidSynchronizedStatement")
61
protected <T> void initService(final Class<T> clazz)
62
{
63
final LinkedHashSet<Class<?>> detectRecursiveInitServices;
0 commit comments