Skip to content

Commit

Permalink
GRAILS-6653 applied patch
Browse files Browse the repository at this point in the history
  • Loading branch information
burtbeckwith committed Sep 16, 2010
1 parent f42c553 commit f333df5
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -48,7 +48,7 @@ PluginFilter getPluginFilter(Object includes, Object excludes) {
}
else if (excludes != null) {
if (excludes instanceof Collection) {
pluginFilter = new ExcludingPluginFilter(new HashSet((Collection)includes));
pluginFilter = new ExcludingPluginFilter(new HashSet((Collection)excludes));
}
else {
String[] excludesArray = StringUtils.commaDelimitedListToStringArray(excludes.toString());
Expand Down

0 comments on commit f333df5

Please sign in to comment.