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

@ -1,10 +1,10 @@
#Sun Feb 21 15:42:19 CST 2010
#Sun Feb 21 16:03:56 CST 2010
build.dir=build
src.dir=src
lib.shared.dir=../shared-libs
test.dir=test
build.number=64
expected.application.version=1.1.2
build.number=1
expected.application.version=1.1.3
lib.dir=lib
release.dir=release
release.jar=pit-${application.version}.jar

Binary file not shown.

Binary file not shown.

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 }