Polish Javadoc for TestGroup

This commit is contained in:
Sam Brannen
2013-11-21 10:53:13 +01:00
parent cfe7a525e2
commit 3200f3e9a7

View File

@@ -69,7 +69,7 @@ public enum TestGroup {
CUSTOM_COMPILATION;
/**
* Parse the specified comma separates string of groups.
* Parse the specified comma separated string of groups.
* @param value the comma separated string of groups
* @return a set of groups
*/
@@ -88,10 +88,6 @@ public enum TestGroup {
return parseGroups(value);
}
/**
* @param value
* @return
*/
private static Set<TestGroup> parseGroups(String value) {
Set<TestGroup> groups = new HashSet<TestGroup>();
for (String group : value.split(",")) {