aboutsummaryrefslogtreecommitdiff
path: root/jacoco-maven-plugin/src/org/jacoco/maven
diff options
context:
space:
mode:
Diffstat (limited to 'jacoco-maven-plugin/src/org/jacoco/maven')
-rw-r--r--jacoco-maven-plugin/src/org/jacoco/maven/FileFilter.java2
1 files changed, 0 insertions, 2 deletions
diff --git a/jacoco-maven-plugin/src/org/jacoco/maven/FileFilter.java b/jacoco-maven-plugin/src/org/jacoco/maven/FileFilter.java
index 3da49410..824f819b 100644
--- a/jacoco-maven-plugin/src/org/jacoco/maven/FileFilter.java
+++ b/jacoco-maven-plugin/src/org/jacoco/maven/FileFilter.java
@@ -53,7 +53,6 @@ public class FileFilter {
* @throws IOException
* if file system access fails
*/
- @SuppressWarnings("unchecked")
public List<String> getFileNames(final File directory) throws IOException {
return FileUtils.getFileNames(directory, getIncludes(), getExcludes(),
false);
@@ -68,7 +67,6 @@ public class FileFilter {
* @throws IOException
* if file system access fails
*/
- @SuppressWarnings("unchecked")
public List<File> getFiles(final File directory) throws IOException {
return FileUtils.getFiles(directory, getIncludes(), getExcludes());
}