We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85687f4 commit 4a88186Copy full SHA for 4a88186
1 file changed
src/main/java/appeng/integration/modules/igtooltip/TooltipProviders.java
@@ -48,7 +48,8 @@ public final class TooltipProviders implements TooltipProvider {
48
49
private static final Logger LOG = LoggerFactory.getLogger(TooltipProviders.class);
50
51
- public static final ServiceLoader<TooltipProvider> LOADER = ServiceLoader.load(TooltipProvider.class);
+ public static final ServiceLoader<TooltipProvider> LOADER = ServiceLoader.load(TooltipProvider.class,
52
+ TooltipProviders.class.getClassLoader());
53
54
static {
55
// We just have to do this once
0 commit comments