This is an automated email from the ASF dual-hosted git repository. mbien pushed a commit to branch revert-1348-installer-show-checkforupdates in repository https://gitbox.apache.org/repos/asf/netbeans.git
commit a07e205d0da84358ce84dca3bca47118453545fa Author: Michael Bien <[email protected]> AuthorDate: Sat Jul 6 11:27:32 2024 +0200 Revert "add check-for-updates chkbox in install wizard" --- .../wizard/components/panels/netbeans/NbPreInstallSummaryPanel.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nbbuild/installer/engine/src/org/netbeans/installer/wizard/components/panels/netbeans/NbPreInstallSummaryPanel.java b/nbbuild/installer/engine/src/org/netbeans/installer/wizard/components/panels/netbeans/NbPreInstallSummaryPanel.java index 8f90235fe5..d819b2e3c8 100644 --- a/nbbuild/installer/engine/src/org/netbeans/installer/wizard/components/panels/netbeans/NbPreInstallSummaryPanel.java +++ b/nbbuild/installer/engine/src/org/netbeans/installer/wizard/components/panels/netbeans/NbPreInstallSummaryPanel.java @@ -318,7 +318,7 @@ public class NbPreInstallSummaryPanel extends ErrorMessagePanel { try { if (product.getLogic().registerInSystem() || product.getUid().equals("jdk") || product.getUid().equals("mysql") || product.getUid().equals("javafxsdk")) { - nbBasePresent = product.getUid().equals(NB_ALL_UID) ? true : nbBasePresent; + nbBasePresent = product.getUid().equals(NB_BASE_UID) ? true : nbBasePresent; } else { if (product.getUid().startsWith("nb-")) { dependentOnNb.add(product); --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
