From 88faabaa63d61ec5369e0b4df21236683a89c07c Mon Sep 17 00:00:00 2001 From: Madhura Bhave Date: Mon, 26 Mar 2018 12:30:26 -0700 Subject: [PATCH] Fix space --- .../boot/cli/command/archive/ArchiveCommand.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-cli/src/main/java/org/springframework/boot/cli/command/archive/ArchiveCommand.java b/spring-boot-project/spring-boot-cli/src/main/java/org/springframework/boot/cli/command/archive/ArchiveCommand.java index eced4919e5..fb1f5e9d4a 100644 --- a/spring-boot-project/spring-boot-cli/src/main/java/org/springframework/boot/cli/command/archive/ArchiveCommand.java +++ b/spring-boot-project/spring-boot-cli/src/main/java/org/springframework/boot/cli/command/archive/ArchiveCommand.java @@ -125,7 +125,7 @@ abstract class ArchiveCommand extends OptionParsingCommand { List nonOptionArguments = new ArrayList( options.nonOptionArguments()); Assert.isTrue(nonOptionArguments.size() >= 2, () -> "The name of the " - + "resulting" + this.type + " and at least one source file must be " + + "resulting " + this.type + " and at least one source file must be " + "specified"); File output = new File((String) nonOptionArguments.remove(0));