We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2abd748 commit e5e1e34Copy full SHA for e5e1e34
1 file changed
src/main/java/cpw/mods/modlauncher/ModuleLayerHandler.java
@@ -82,7 +82,7 @@ public LayerInfo buildLayer(final Layer layer, BiFunction<Configuration, List<Mo
82
} catch (ResolutionException e) {
83
// Catch and log errors when two mods have the same package name, or other module loading errors
84
// This ensures they make it to the log file.
85
- LOGGER.error("Error while resolving modules: ", e);
+ LOGGER.error("Error while resolving modules.", e);
86
throw e;
87
}
88
final var allParents = Arrays.stream(layer.getParent()).map(completedLayers::get).map(LayerInfo::layer).<ModuleLayer>mapMulti((moduleLayer, comp)-> {
0 commit comments