/hg/MauveTestCoverage: * src/ReportGenerator.java:
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Thu May 24 07:52:36 PDT 2012
changeset 8d326a855021 in /hg/MauveTestCoverage
details: http://icedtea.classpath.org/hg/MauveTestCoverage?cmd=changeset;node=8d326a855021
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Thu May 24 16:55:09 2012 +0200
* src/ReportGenerator.java:
Fixed an exception occuring when class list
contains an empty line (usually at the end
of file).
diffstat:
ChangeLog | 7 +++++++
src/ReportGenerator.java | 10 +++++++++-
2 files changed, 16 insertions(+), 1 deletions(-)
diffs (34 lines):
diff -r b6c8372f5723 -r 8d326a855021 ChangeLog
--- a/ChangeLog Wed May 16 10:59:45 2012 +0200
+++ b/ChangeLog Thu May 24 16:55:09 2012 +0200
@@ -1,3 +1,10 @@
+2012-05-24 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/ReportGenerator.java:
+ Fixed an exception occuring when class list
+ contains an empty line (usually at the end
+ of file).
+
2012-05-16 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/ClassInfo.java:
diff -r b6c8372f5723 -r 8d326a855021 src/ReportGenerator.java
--- a/src/ReportGenerator.java Wed May 16 10:59:45 2012 +0200
+++ b/src/ReportGenerator.java Thu May 24 16:55:09 2012 +0200
@@ -71,7 +71,15 @@
// set of classes should be sorted
Set<String> allClasses = new TreeSet<String>();
// add all lines read from a file to a set (and sort them)
- allClasses.addAll(fileContent);
+ // we have to exclude all empty lines
+ for (String className : fileContent)
+ {
+ // add only non empty lines
+ if (className != null && !className.trim().isEmpty())
+ {
+ allClasses.add(className.trim());
+ }
+ }
return allClasses;
}
More information about the distro-pkg-dev
mailing list