Author: simonetripodi
Date: Mon Nov 21 07:39:03 2011
New Revision: 1204380
URL: http://svn.apache.org/viewvc?rev=1204380&view=rev
Log:
organized imports
Modified:
commons/sandbox/meiyo/trunk/src/main/java/org/apache/commons/meiyo/classpath/PathAnalyzer.java
Modified:
commons/sandbox/meiyo/trunk/src/main/java/org/apache/commons/meiyo/classpath/PathAnalyzer.java
URL:
http://svn.apache.org/viewvc/commons/sandbox/meiyo/trunk/src/main/java/org/apache/commons/meiyo/classpath/PathAnalyzer.java?rev=1204380&r1=1204379&r2=1204380&view=diff
==============================================================================
---
commons/sandbox/meiyo/trunk/src/main/java/org/apache/commons/meiyo/classpath/PathAnalyzer.java
(original)
+++
commons/sandbox/meiyo/trunk/src/main/java/org/apache/commons/meiyo/classpath/PathAnalyzer.java
Mon Nov 21 07:39:03 2011
@@ -19,6 +19,7 @@ package org.apache.commons.meiyo.classpa
* under the License.
*/
+import static java.util.regex.Pattern.CASE_INSENSITIVE;
import static java.util.regex.Pattern.compile;
import java.io.File;
@@ -33,7 +34,7 @@ final class PathAnalyzer
implements Runnable
{
- private static final Pattern JAR_FILE = compile( ".+\\.(jar|zip)",
Pattern.CASE_INSENSITIVE );
+ private static final Pattern JAR_FILE = compile( ".+\\.(jar|zip)",
CASE_INSENSITIVE );
private static final String CLASS_EXTENSION = ".class";