From cf1c0cd04c912745845c77d830339512db27ed41 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Thu, 9 Jul 2015 14:57:45 +0200 Subject: [PATCH] Polish --- .../java/org/springframework/boot/ApplicationArguments.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spring-boot/src/main/java/org/springframework/boot/ApplicationArguments.java b/spring-boot/src/main/java/org/springframework/boot/ApplicationArguments.java index 7985e278de..d7c08c0795 100644 --- a/spring-boot/src/main/java/org/springframework/boot/ApplicationArguments.java +++ b/spring-boot/src/main/java/org/springframework/boot/ApplicationArguments.java @@ -31,14 +31,14 @@ public interface ApplicationArguments { * Return the raw unprocessed arguments that were passed to the application. * @return the arguments */ - public String[] getSourceArgs(); + String[] getSourceArgs(); /** * Return then names of all option arguments. For example, if the arguments were - * "--foo=bar --debug" would return the values {@code ["foo", "bar"]}. + * "--foo=bar --debug" would return the values {@code ["foo", "debug"]}. * @return the option names or an empty set */ - public Set getOptionNames(); + Set getOptionNames(); /** * Return whether the set of option arguments parsed from the arguments contains an