You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@netbeans.apache.org by lk...@apache.org on 2020/10/01 05:30:46 UTC

[netbeans] branch master updated: [NETBEANS-4844] Non-empy modulebootpath shall be provided for non-modular code as well.

This is an automated email from the ASF dual-hosted git repository.

lkishalmi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans.git


The following commit(s) were added to refs/heads/master by this push:
     new da730a6  [NETBEANS-4844] Non-empy modulebootpath shall be provided for non-modular code as well.
da730a6 is described below

commit da730a6bc4fe09c621b0aa93bb8ea1e806c20c13
Author: Laszlo Kishalmi <la...@gmail.com>
AuthorDate: Thu Sep 24 22:33:26 2020 -0700

    [NETBEANS-4844] Non-empy modulebootpath shall be provided for non-modular code as well.
---
 .../netbeans/modules/gradle/java/classpath/ClassPathProviderImpl.java  | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/java/gradle.java/src/org/netbeans/modules/gradle/java/classpath/ClassPathProviderImpl.java b/java/gradle.java/src/org/netbeans/modules/gradle/java/classpath/ClassPathProviderImpl.java
index ca22ea5..db5e474 100644
--- a/java/gradle.java/src/org/netbeans/modules/gradle/java/classpath/ClassPathProviderImpl.java
+++ b/java/gradle.java/src/org/netbeans/modules/gradle/java/classpath/ClassPathProviderImpl.java
@@ -299,8 +299,7 @@ public final class ClassPathProviderImpl extends ProjectOpenedHook implements Cl
 
         private synchronized ClassPath getModuleBoothPath() {
             if (moduleBoot == null) {
-                //TODO: Is this Ok? Made after the Maven's ClassPathProviderImpl.getModuleBootPath
-                moduleBoot = createMultiplexClassPath(getPlatformModulesPath(), getPlatformModulesPath());
+                moduleBoot = createMultiplexClassPath(getPlatformModulesPath(), getBootClassPath());
             }
             return moduleBoot;
         }


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@netbeans.apache.org
For additional commands, e-mail: commits-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists