From ca56fbbcf03f5029f7903a59f24b610972bb70ec Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Sun, 5 Jul 2015 23:10:34 -0700 Subject: [PATCH] Fix malformed RandomValuePropertySource javadoc See gh-3391 --- .../boot/context/config/RandomValuePropertySource.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/spring-boot/src/main/java/org/springframework/boot/context/config/RandomValuePropertySource.java b/spring-boot/src/main/java/org/springframework/boot/context/config/RandomValuePropertySource.java index afce9bb5abd..2ad089acd75 100644 --- a/spring-boot/src/main/java/org/springframework/boot/context/config/RandomValuePropertySource.java +++ b/spring-boot/src/main/java/org/springframework/boot/context/config/RandomValuePropertySource.java @@ -37,14 +37,13 @@ import org.springframework.util.StringUtils; *
  • When {@literal "long"}, a random {@link Long} value, restricted by an optionally * specified range.
  • *
  • Otherwise, a {@code byte[]}.
  • - * * The {@literal "random.int"} and {@literal "random.long"} properties supports a range * suffix whose syntax is: *

    * {@code OPEN value (,max) CLOSE} where the {@code OPEN,CLOSE} are any character and * {@code value,max} are integers. If {@code max} is provided then {@code value} is the * minimum value and {@code max} is the maximum (exclusive). - *

    * * @author Dave Syer * @author Matt Benson