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 53044
Collapse All | Expand All

(-)WebActionProvider.java (-2 / +2 lines)
Lines 7-13 Link Here
7
 * http://www.sun.com/
7
 * http://www.sun.com/
8
 *
8
 *
9
 * The Original Code is NetBeans. The Initial Developer of the Original
9
 * The Original Code is NetBeans. The Initial Developer of the Original
10
 * Code is Sun Microsystems, Inc. Portions Copyright 1997-2004 Sun
10
 * Code is Sun Microsystems, Inc. Portions Copyright 1997-2005 Sun
11
 * Microsystems, Inc. All Rights Reserved.
11
 * Microsystems, Inc. All Rights Reserved.
12
 */
12
 */
13
13
Lines 160-166 Link Here
160
            if (isDebugged()) {
160
            if (isDebugged()) {
161
                NotifyDescriptor nd;
161
                NotifyDescriptor nd;
162
                String text;
162
                String text;
163
                if (command.equals (COMMAND_RUN)) {
163
                if (command.equals (COMMAND_RUN) || command.equals(WebProjectConstants.COMMAND_REDEPLOY)) {
164
                    ProjectInformation pi = (ProjectInformation)project.getLookup().lookup(ProjectInformation.class);
164
                    ProjectInformation pi = (ProjectInformation)project.getLookup().lookup(ProjectInformation.class);
165
                    text = pi.getDisplayName();
165
                    text = pi.getDisplayName();
166
                } else { //COMMAND_RUN_SINGLE
166
                } else { //COMMAND_RUN_SINGLE

Return to bug 53044