@@ -42,8 +42,8 @@ public abstract class AbstractScanner
42
42
* <li>SurroundSCM: **/.MySCMServerInfo</li>
43
43
* <li>Mac: **/.DS_Store</li>
44
44
* <li>Serena Dimension: **/.metadata, **/.metadata/**</li>
45
- * <li>Mercurial: **/.hg, **/.hg/**, **/.hgignore </li>
46
- * <li>GIT : **/.git, **/.gitignore, **/.gitattributes , **/.git/**</li>
45
+ * <li>Mercurial: **/.hg, **/.hg/**</li>
46
+ * <li>Git : **/.git, **/.git/**</li>
47
47
* <li>Bitkeeper: **/BitKeeper, **/BitKeeper/**, **/ChangeSet,
48
48
* **/ChangeSet/**</li>
49
49
* <li>Darcs: **/_darcs, **/_darcs/**, **/.darcsrepo,
@@ -90,10 +90,10 @@ public abstract class AbstractScanner
90
90
"**/.metadata" , "**/.metadata/**" ,
91
91
92
92
// Mercurial
93
- "**/.hg" , "**/.hgignore" , "**/. hg/**" ,
93
+ "**/.hg" , "**/.hg/**" ,
94
94
95
95
// git
96
- "**/.git" , "**/.gitignore" , "**/.gitattributes" , "**/. git/**" ,
96
+ "**/.git" , "**/.git/**" ,
97
97
98
98
// BitKeeper
99
99
"**/BitKeeper" , "**/BitKeeper/**" , "**/ChangeSet" , "**/ChangeSet/**" ,
@@ -124,7 +124,7 @@ public abstract class AbstractScanner
124
124
* @since 3.3.0
125
125
*/
126
126
protected Comparator <String > filenameComparator ;
127
-
127
+
128
128
/**
129
129
* Sets whether or not the file system should be regarded as case sensitive.
130
130
*
@@ -137,7 +137,7 @@ public void setCaseSensitive( boolean isCaseSensitive )
137
137
138
138
/**
139
139
* <p>Tests whether or not a given path matches the start of a given pattern up to the first "**".</p>
140
- *
140
+ *
141
141
* <p>This is not a general purpose test and should only be used if you can live with false positives. For example,
142
142
* <code>pattern=**\a</code> and <code>str=b</code> will yield <code>true</code>.</p>
143
143
*
@@ -152,7 +152,7 @@ protected static boolean matchPatternStart( String pattern, String str )
152
152
153
153
/**
154
154
* <p>Tests whether or not a given path matches the start of a given pattern up to the first "**".</p>
155
- *
155
+ *
156
156
* <p>This is not a general purpose test and should only be used if you can live with false positives. For example,
157
157
* <code>pattern=**\a</code> and <code>str=b</code> will yield <code>true</code>.</p>
158
158
*
@@ -223,7 +223,7 @@ protected static boolean match( String pattern, String str, boolean isCaseSensit
223
223
/**
224
224
* <p>Sets the list of include patterns to use. All '/' and '\' characters are replaced by
225
225
* <code>File.separatorChar</code>, so the separator used need not match <code>File.separatorChar</code>.</p>
226
- *
226
+ *
227
227
* <p>When a pattern ends with a '/' or '\', "**" is appended.</p>
228
228
*
229
229
* @param includes A list of include patterns. May be <code>null</code>, indicating that all files should be
@@ -252,7 +252,7 @@ public void setIncludes( String[] includes )
252
252
/**
253
253
* <p>Sets the list of exclude patterns to use. All '/' and '\' characters are replaced by
254
254
* <code>File.separatorChar</code>, so the separator used need not match <code>File.separatorChar</code>.</p>
255
- *
255
+ *
256
256
* <p>When a pattern ends with a '/' or '\', "**" is appended.</p>
257
257
*
258
258
* @param excludes A list of exclude patterns. May be <code>null</code>, indicating that no files should be
0 commit comments