Skip to content

Commit 88faaba

Browse files
committed
Fix space
1 parent fa6ee8e commit 88faaba

File tree

1 file changed

+1
-1
lines changed
  • spring-boot-project/spring-boot-cli/src/main/java/org/springframework/boot/cli/command/archive

1 file changed

+1
-1
lines changed

spring-boot-project/spring-boot-cli/src/main/java/org/springframework/boot/cli/command/archive/ArchiveCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ protected ExitStatus run(OptionSet options) throws Exception {
125125
List<?> nonOptionArguments = new ArrayList<Object>(
126126
options.nonOptionArguments());
127127
Assert.isTrue(nonOptionArguments.size() >= 2, () -> "The name of the "
128-
+ "resulting" + this.type + " and at least one source file must be "
128+
+ "resulting " + this.type + " and at least one source file must be "
129129
+ "specified");
130130

131131
File output = new File((String) nonOptionArguments.remove(0));

0 commit comments

Comments
 (0)