Subversion Repository Public Repository

litesoft

Diff Revisions 958 vs 959 for /trunk/Java/ScarPlus/src/com/esotericsoftware/wildcard/support/AllFileNameMatcher.java

Diff revisions: vs.
  @@ -2,12 +2,10 @@
2 2
3 3 import com.esotericsoftware.wildcard.*;
4 4
5 - public class AllFileNameMatcher implements FileNameMatcher
6 - {
5 + public class AllFileNameMatcher implements FileNameMatcher {
7 6 public static final FileNameMatcher INSTANCE = new AllFileNameMatcher();
8 7
9 - private AllFileNameMatcher()
10 - {
8 + private AllFileNameMatcher() {
11 9 }
12 10
13 11 /**
  @@ -16,8 +14,7 @@
16 14 * @param filePath !null and !empty and trim()'d (NO path may be specified)
17 15 */
18 16 @Override
19 - public boolean acceptable( String fileName )
20 - {
17 + public boolean acceptable( String fileName ) {
21 18 return true;
22 19 }
23 20 }