Subversion Repository Public Repository

litesoft

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

Diff revisions: vs.
  @@ -1,22 +1,18 @@
1 1 package com.esotericsoftware.wildcard.support;
2 2
3 - public class StarStarFilePathPartMatcher implements FilePathPartMatcher
4 - {
3 + public class StarStarFilePathPartMatcher implements FilePathPartMatcher {
5 4 public static final FilePathPartMatcher INSTANCE = new StarStarFilePathPartMatcher();
6 5
7 - private StarStarFilePathPartMatcher()
8 - {
6 + private StarStarFilePathPartMatcher() {
9 7 }
10 8
11 9 @Override
12 - public boolean acceptsAnyNumberOfParts()
13 - {
10 + public boolean acceptsAnyNumberOfParts() {
14 11 return true;
15 12 }
16 13
17 14 @Override
18 - public boolean acceptable( String pFilePathPart )
19 - {
15 + public boolean acceptable( String pFilePathPart ) {
20 16 return true;
21 17 }
22 18 }