Closed GoogleCodeExporter closed 9 years ago
upgrade to rc2
Original comment by ronm...@gmail.com
on 15 Nov 2010 at 2:46
Okay, done. Another point though, in rc1 I definitely needed a trick to make it
work under Windows regarding the System File-Separator, the Back-Shash. On a
package prefix I called packagePrefix.replace(".", ".?\\\\?"); so that the
Regular Expression would also cover paths with Back-Slashes. I am not quite
sure if this has been fixed in rc2 already. Example:
String packagePrefix = ...; // something like com.company
FilterBuilder predicate = new FilterBuilder();
String preparedPackagePrefix = packagePrefix.replace(".", ".?\\\\?")
predicate.include(FilterBuilder.prefix(preparedPackagePrefix));
Original comment by post.at....@googlemail.com
on 4 Jan 2011 at 4:23
fixed on trunk
Original comment by ronm...@gmail.com
on 12 May 2011 at 7:49
Original issue reported on code.google.com by
post.at....@googlemail.com
on 15 Nov 2010 at 2:41