aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaurent Goujon <laurentgo@users.noreply.github.com>2020-10-30 00:00:17 -0700
committerGitHub <noreply@github.com>2020-10-30 08:00:17 +0100
commite6a9f312c931821fd6d3146c7c5538772397c400 (patch)
tree611bd84912301e5d31bd35e7e7cc16122d7ecb57
parentfa6a84392bfb72d62e4fd1b6d6638d17ca80b76e (diff)
downloadjacoco-e6a9f312c931821fd6d3146c7c5538772397c400.tar.gz
Fix bundleName typo in ReportSupport (#1116)
Fix bundleName mispelling in ReportSupport (was bundeName)
-rw-r--r--jacoco-maven-plugin/src/org/jacoco/maven/ReportSupport.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/jacoco-maven-plugin/src/org/jacoco/maven/ReportSupport.java b/jacoco-maven-plugin/src/org/jacoco/maven/ReportSupport.java
index 86ceaa01..34ee89d2 100644
--- a/jacoco-maven-plugin/src/org/jacoco/maven/ReportSupport.java
+++ b/jacoco-maven-plugin/src/org/jacoco/maven/ReportSupport.java
@@ -165,7 +165,7 @@ final class ReportSupport {
*
* @param visitor
* group visitor to emit the project's coverage to
- * @param bundeName
+ * @param bundleName
* name for this project in the report
* @param project
* the MavenProject
@@ -179,15 +179,15 @@ final class ReportSupport {
* if class files can't be read
*/
public void processProject(final IReportGroupVisitor visitor,
- final String bundeName, final MavenProject project,
+ final String bundleName, final MavenProject project,
final List<String> includes, final List<String> excludes,
final String srcEncoding) throws IOException {
- processProject(visitor, bundeName, project, includes, excludes,
+ processProject(visitor, bundleName, project, includes, excludes,
new SourceFileCollection(project, srcEncoding));
}
private void processProject(final IReportGroupVisitor visitor,
- final String bundeName, final MavenProject project,
+ final String bundleName, final MavenProject project,
final List<String> includes, final List<String> excludes,
final ISourceFileLocator locator) throws IOException {
final CoverageBuilder builder = new CoverageBuilder();
@@ -203,7 +203,7 @@ final class ReportSupport {
}
}
- final IBundleCoverage bundle = builder.getBundle(bundeName);
+ final IBundleCoverage bundle = builder.getBundle(bundleName);
logBundleInfo(bundle, builder.getNoMatchClasses());
visitor.visitBundle(bundle, locator);