jglick commented on code in PR #5091:
URL: https://github.com/apache/netbeans/pull/5091#discussion_r1054756178


##########
java/maven/src/org/netbeans/modules/maven/classpath/ClassPathProviderImpl.java:
##########
@@ -370,7 +305,13 @@ private ClassPath getRuntimeClasspath(int type) {
     
     private ClassPath getJava8RunTimeClassPath(int type) {
         final int ftype = type == TYPE_WEB ? TYPE_SRC : type;
-        return computeIfAbsent(JAVA8_RUNTIME_PATH + ftype, () -> 
ClassPathFactory.createClassPath(ftype == TYPE_SRC ? new 
RuntimeClassPathImpl(getNBMavenProject()) : new 
TestRuntimeClassPathImpl(getNBMavenProject(), false)));
+        return computeIfAbsent(JAVA8_RUNTIME_PATH + ftype,
+                () -> ClassPathFactory.createClassPath(
+                        ftype == TYPE_SRC
+                            ? new RuntimeClassPathImpl(getNBMavenProject())
+                            : new 
TestRuntimeClassPathImpl(getNBMavenProject(), false)
+                )
+        );

Review Comment:
   There is no change in code here IIUC? It would be helpful to have stylistic 
/ reformatting changes clearly marked as such and be in separate PRs, rather 
than intermixed with behavioral changes or refactorings.



-- 
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

Reply via email to