Version: 2.0.7 Update
This commit is contained in:
@@ -15,10 +15,6 @@ public class MatchHTTP {
|
||||
public boolean matchSuffix(String str) {
|
||||
Pattern pattern = new Pattern(String.format("[\\w]+[\\.](%s)", lc.getExcludeSuffix()), REFlags.IGNORE_CASE);
|
||||
Matcher matcher = pattern.matcher(str);
|
||||
if(matcher.find()){
|
||||
return true;
|
||||
}else{
|
||||
return false;
|
||||
}
|
||||
return matcher.find();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user