Skip to content

Commit cc84640

Browse files
committed
Merge pull request #14460 from ruslanys
* pr/14460: Polish "Remove duplicate -l option for init command" Remove duplicate -l option for init command
2 parents 24eefcc + 6e6c22c commit cc84640

File tree

1 file changed

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

1 file changed

+2
-2
lines changed

spring-boot-project/spring-boot-cli/src/main/java/org/springframework/boot/cli/command/init/InitCommand.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2017 the original author or authors.
2+
* Copyright 2012-2018 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -127,7 +127,7 @@ protected void options() {
127127
this.target = option(Arrays.asList("target"), "URL of the service to use")
128128
.withRequiredArg()
129129
.defaultsTo(ProjectGenerationRequest.DEFAULT_SERVICE_URL);
130-
this.listCapabilities = option(Arrays.asList("list", "l"),
130+
this.listCapabilities = option(Arrays.asList("list"),
131131
"List the capabilities of the service. Use it to discover the "
132132
+ "dependencies and the types that are available");
133133
projectGenerationOptions();

0 commit comments

Comments
 (0)