Commit 52c2cda 1 parent d7107da commit 52c2cda Copy full SHA for 52c2cda
File tree 1 file changed +0
-15
lines changed
maven-scm-plugin/src/main/java/org/apache/maven/scm/plugin
1 file changed +0
-15
lines changed Original file line number Diff line number Diff line change 19
19
* under the License.
20
20
*/
21
21
22
- import java .io .File ;
23
22
import java .io .IOException ;
24
23
25
24
import org .apache .maven .plugin .MojoExecutionException ;
26
25
import org .apache .maven .plugins .annotations .Mojo ;
27
26
import org .apache .maven .plugins .annotations .Parameter ;
28
27
import org .apache .maven .scm .ScmException ;
29
28
import org .apache .maven .scm .ScmFile ;
30
- import org .apache .maven .scm .ScmFileSet ;
31
29
import org .apache .maven .scm .command .list .ListScmResult ;
32
30
import org .apache .maven .scm .repository .ScmRepository ;
33
31
@@ -86,18 +84,5 @@ public void execute()
86
84
}
87
85
}
88
86
89
- public ScmFileSet getFileSet ()
90
- throws IOException
91
- {
92
- if ( getIncludes () != null || getExcludes () != null )
93
- {
94
- return new ScmFileSet ( getWorkingDirectory (), getIncludes (), getExcludes () );
95
- }
96
- else
97
- {
98
- return new ScmFileSet ( getWorkingDirectory (), new File ( "." ) );
99
- }
100
- }
101
-
102
87
}
103
88
You can’t perform that action at this time.
0 commit comments