We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfe7a52 commit 3200f3eCopy full SHA for 3200f3e
spring-core/src/test/java/org/springframework/tests/TestGroup.java
@@ -69,7 +69,7 @@ public enum TestGroup {
69
CUSTOM_COMPILATION;
70
71
/**
72
- * Parse the specified comma separates string of groups.
+ * Parse the specified comma separated string of groups.
73
* @param value the comma separated string of groups
74
* @return a set of groups
75
*/
@@ -88,10 +88,6 @@ public static Set<TestGroup> parse(String value) {
88
return parseGroups(value);
89
}
90
91
- /**
92
- * @param value
93
- * @return
94
- */
95
private static Set<TestGroup> parseGroups(String value) {
96
Set<TestGroup> groups = new HashSet<TestGroup>();
97
for (String group : value.split(",")) {
0 commit comments