Skip to content

Commit

Permalink
Fixups from review (#144)
Browse files Browse the repository at this point in the history
  • Loading branch information
adangel committed Apr 8, 2024
1 parent 1528f30 commit 4aaf0da
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions src/it/MPMD-379-JDK21/invoker.properties
Expand Up @@ -15,8 +15,6 @@
# specific language governing permissions and limitations
# under the License.

invoker.java.version = 1.8+

# available toolchains under linux:
# https://github.com/apache/infrastructure-p6/blob/production/modules/build_nodes/files/toolchains.xml

Expand Down
Expand Up @@ -181,11 +181,11 @@ private CpdResult run() throws MavenReportException {
writeFormattedReport(report);
}
} catch (MavenReportException e) {
LOG.error(e.getMessage(), e);
LOG.error("Error while writing CPD report", e);
}
});
} catch (IOException e) {
LOG.error("Error while executing CPD: {}", e.getMessage(), e);
LOG.error("Error while executing CPD", e);
}
LOG.debug("CPD finished.");

Expand Down

0 comments on commit 4aaf0da

Please sign in to comment.