Bugfix in defaultSorters for Filter

This commit is contained in:
Jonathan Bernard
2010-02-21 16:09:13 -06:00
parent 8ffd3ccdf3
commit d642be27e8
12 changed files with 22 additions and 20 deletions

View File

@ -7,8 +7,8 @@ class Filter {
List<String> ids = null
int priority = 9
boolean acceptProjects = true
Closure projectSorter = defaultIssueSorter
Closure issueSorter = defaultProjectSorter
Closure issueSorter = defaultIssueSorter
Closure projectSorter = defaultProjectSorter
public static Closure defaultIssueSorter = { it.id.toInteger() }
public static Closure defaultProjectSorter = { it.name }