Skip to content

Commit

Permalink
Rename csv headings
Browse files Browse the repository at this point in the history
  • Loading branch information
cesarsotovalero committed Mar 9, 2021
1 parent b017ad6 commit 05e281c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -652,7 +652,7 @@ public void execute() throws MojoExecutionException, MojoFailureException {
}
File classUsageFile = new File(project.getBasedir().getAbsolutePath() + File.separator + "class-usage.csv");
try {
FileUtils.write(classUsageFile, "ProjectClass,DependencyClass,Dependency\n", Charset.defaultCharset());
FileUtils.write(classUsageFile, "OriginClass,TargetClass,Dependency\n", Charset.defaultCharset());
} catch (IOException e) {
getLog().error("Error writing the CSV header.");
}
Expand Down

0 comments on commit 05e281c

Please sign in to comment.