🚧 Little bug fixed

This commit is contained in:
Andreas Dinauer 2026-04-19 18:06:22 +02:00
parent c9af6f75be
commit 53809f294b

View File

@ -55,7 +55,7 @@ public class JarService
private Jar findJar(MavenContext context) private Jar findJar(MavenContext context)
{ {
return versionService.findOptional(context.groupId(), context.artifactId(), context.version().getRaw()).orElseThrow().getJarByFilename(context.file().getBase()).orElseThrow(); return versionService.findOptional(context.groupId(), context.artifactId(), context.version().getRaw()).orElseThrow().getJarByFilename(context.file().getFilename()).orElseThrow();
} }
private boolean existsJar(List<Jar> jars, String fileBase) private boolean existsJar(List<Jar> jars, String fileBase)