aboutsummaryrefslogtreecommitdiff
path: root/jacoco-maven-plugin/src/org/jacoco/maven
diff options
context:
space:
mode:
authorMarc R. Hoffmann <hoffmann@mountainminds.com>2016-04-19 22:27:50 +0200
committerMarc R. Hoffmann <hoffmann@mountainminds.com>2016-04-19 22:27:50 +0200
commit5670443f4221092ce27882a5e97e3458c3cd8478 (patch)
tree17404992cef15cb91af89aeb56a69663d37dd3de /jacoco-maven-plugin/src/org/jacoco/maven
parentc181f60ce08ec9b0a6f59a2391c33c41bca8f1c0 (diff)
downloadjacoco-5670443f4221092ce27882a5e97e3458c3cd8478.tar.gz
Fix compiler warning after plexus-utils upgrade (#402)
Fix compiler warnings after plexus-utils upgrade
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());
}