Hi,
> Could someone with write-acces review and
> apply the following patch ?
Why to call String.toLowercase() 4 times?
I think following is better:
public boolean accept(File dir, String filename)
{
String lowercaseFilename = filename.toLowerCase();
return
lowercaseFilename.endsWith(".jar") ||
lowercaseFilename.endsWith(".war") ||
lowercaseFilename.endsWith(".ear") ||
lowercaseFilename.endsWith(".zip");
}
Bye,
Algirdas
_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-development