This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 207897
Collapse All | Expand All

(-)glassfish.common/src/org/netbeans/modules/glassfish/common/AdminAuthenticator.java (-1 / +2 lines)
Lines 54-59 Link Here
54
import org.openide.NotifyDescriptor;
54
import org.openide.NotifyDescriptor;
55
import org.openide.util.NbBundle;
55
import org.openide.util.NbBundle;
56
import org.openide.util.NbPreferences;
56
import org.openide.util.NbPreferences;
57
import org.openide.util.NetworkSettings;
57
58
58
/** Global password protected sites Authenticator for IDE
59
/** Global password protected sites Authenticator for IDE
59
 *
60
 *
Lines 90-96 Link Here
90
                if (!"admin-realm".equals(title)) {  // NOI18N
91
                if (!"admin-realm".equals(title)) {  // NOI18N
91
                    displayed = false;
92
                    displayed = false;
92
                }
93
                }
93
                if (!displayed) {
94
                if (!displayed && !NetworkSettings.isAuthenticationDialogSuppressed()) {
94
                    // try to prevent the dialog from popping up too often... since the
95
                    // try to prevent the dialog from popping up too often... since the
95
                    // plugin  sends a bunch of requests to the AS one after the other to try to
96
                    // plugin  sends a bunch of requests to the AS one after the other to try to
96
                    // populate its node tree.
97
                    // populate its node tree.

Return to bug 207897