* fixed bug that caused [.rar, .r00, .r01, ...] to be ignored

This commit is contained in:
Reinhard Pointner 2012-05-02 02:40:21 +00:00
parent 1f10c59364
commit f76ea32e10
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@ public class Archive implements Closeable {
public static final FileFilter VOLUME_ONE_FILTER = new FileFilter() {
private Pattern volume = Pattern.compile("[.]r[0-9]+$|[.]part[0-9]+|[.]rar$|[.][0-9]+$", Pattern.CASE_INSENSITIVE);
private Pattern volume = Pattern.compile("[.]r[0-9]+$|[.]part[0-9]+|[.][0-9]+$", Pattern.CASE_INSENSITIVE);
@Override