Claudenw commented on code in PR #249:
URL: https://github.com/apache/creadur-rat/pull/249#discussion_r1597628770
##########
apache-rat-core/src/main/java/org/apache/rat/ReportConfiguration.java:
##########
@@ -121,6 +127,22 @@ public void setArchiveProcessing(Processing
archiveProcessing) {
this.archiveProcessing = archiveProcessing;
}
+ /**
+ * Retrieves the archive processing type.
+ * @return The archive processing type.
+ */
+ public Processing getStandardProcessing() {
+ return standardProcessing == null ? Defaults.STANDARD_PROCESSING :
standardProcessing;
+ }
+
+ /**
+ * Sets the archive processing type. If not set will default to
NOTIFICATION.
Review Comment:
`getStandardProcessing` has the check for null returning
Defaults.STANDARD_PROCESSING (which is currently set to NOTIFICATION)
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]