matthiasblaesing commented on code in PR #8265: URL: https://github.com/apache/netbeans/pull/8265#discussion_r1992310263
########## java/maven/src/org/netbeans/modules/maven/output/DefaultOutputProcessorFactory.java: ########## @@ -32,24 +31,28 @@ @ServiceProvider(service=OutputProcessorFactory.class) public class DefaultOutputProcessorFactory implements ContextOutputProcessorFactory { - @Override public Set<OutputProcessor> createProcessorsSet(Project project) { - Set<OutputProcessor> toReturn = new HashSet<>(); + @Override + public Set<OutputProcessor> createProcessorsSet(Project project) { if (project != null) { - toReturn.add(new JavadocOutputProcessor()); - toReturn.add(new TestOutputListenerProvider()); - toReturn.add(new SiteOutputProcessor(project)); NbMavenProjectImpl nbprj = project.getLookup().lookup(NbMavenProjectImpl.class); - toReturn.add(new JavaStacktraceOutputProcessor(nbprj)); - toReturn.add(new DependencyAnalyzeOutputProcessor(nbprj)); + return Set.of( +// new JavadocOutputProcessor(), // TODO update processor Review Comment: Thanks, makes sense. -- 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: notifications-unsubscr...@netbeans.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@netbeans.apache.org For additional commands, e-mail: notifications-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists