Skip to content

Commit 3200f3e

Browse files
committed
Polish Javadoc for TestGroup
1 parent cfe7a52 commit 3200f3e

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

spring-core/src/test/java/org/springframework/tests/TestGroup.java

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public enum TestGroup {
6969
CUSTOM_COMPILATION;
7070

7171
/**
72-
* Parse the specified comma separates string of groups.
72+
* Parse the specified comma separated string of groups.
7373
* @param value the comma separated string of groups
7474
* @return a set of groups
7575
*/
@@ -88,10 +88,6 @@ public static Set<TestGroup> parse(String value) {
8888
return parseGroups(value);
8989
}
9090

91-
/**
92-
* @param value
93-
* @return
94-
*/
9591
private static Set<TestGroup> parseGroups(String value) {
9692
Set<TestGroup> groups = new HashSet<TestGroup>();
9793
for (String group : value.split(",")) {

0 commit comments

Comments
 (0)