Author: sebb
Date: Mon May 20 18:49:36 2013
New Revision: 1484562
URL: http://svn.apache.org/r1484562
Log:
Warning no longer needs to be suppressed
Modified:
creadur/rat/trunk/apache-rat-core/src/main/java/org/apache/rat/Report.java
Modified:
creadur/rat/trunk/apache-rat-core/src/main/java/org/apache/rat/Report.java
URL:
http://svn.apache.org/viewvc/creadur/rat/trunk/apache-rat-core/src/main/java/org/apache/rat/Report.java?rev=1484562&r1=1484561&r2=1484562&view=diff
==============================================================================
--- creadur/rat/trunk/apache-rat-core/src/main/java/org/apache/rat/Report.java
(original)
+++ creadur/rat/trunk/apache-rat-core/src/main/java/org/apache/rat/Report.java
Mon May 20 18:49:36 2013
@@ -93,7 +93,6 @@ public class Report {
else if (cl.hasOption(EXCLUDE_FILE_CLI)) {
String excludeFileName = cl.getOptionValue(EXCLUDE_FILE_CLI);
if (excludeFileName != null) {
- @SuppressWarnings("unchecked") // method generates list of
Strings, but is not yet generic
List<String> excludes = FileUtils.readLines(new
File(excludeFileName));
final OrFileFilter orFilter = new OrFileFilter();
for (String exclude : excludes) {