(no commit message)
[utils] / support / general / src / main / java / org / wamblee / io / RegexFilenameFilter.java
index 89e3758d843b0276a700b867182fa0bbbd024b5f..311882a6faa5a8f37742fd8532f2c909390d1a5d 100644 (file)
@@ -12,7 +12,7 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- */ 
+ */
 package org.wamblee.io;
 
 import java.io.File;
@@ -20,18 +20,21 @@ import java.io.FileFilter;
 import java.util.regex.Pattern;
 
 /**
- * Filename filter based on regular expressions. 
+ * Filename filter based on regular expressions.
+ * 
  * @author Erik Brakkee
  */
 public class RegexFilenameFilter implements FileFilter {
-    
-    private Pattern pattern; 
-    
+
+    private Pattern pattern;
+
     /**
-     * Constructs the filter. 
-     * @param aRegex Regular expression to filter on. 
+     * Constructs the filter.
+     * 
+     * @param aRegex
+     *            Regular expression to filter on.
      */
-    public RegexFilenameFilter(String aRegex) { 
+    public RegexFilenameFilter(String aRegex) {
         pattern = Pattern.compile(aRegex);
     }