chore: Run spotless

This commit is contained in:
Magnus Leßmann (@MarkL4YG) 2024-11-17 20:20:58 +01:00
parent ae6c7232c4
commit caefe964b1
8 changed files with 146 additions and 57 deletions

View file

@ -9,7 +9,12 @@ public class UnresolvableCLIDependency extends Exception {
private final String propertyName;
public UnresolvableCLIDependency(String executableName, String propertyName) {
super("Could not resolve executable for '%s'. (Use property '%s' to point the application directly to the executable.)".formatted(executableName, propertyName));
super(
"Could not resolve executable for '%s'. (Use property '%s' to point the application directly to the executable.)".formatted(
executableName,
propertyName
)
);
this.executableName = executableName;
this.propertyName = propertyName;
}