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.

Bug 29297

Summary: Empty Working Dir text box on OpenVMS doesn't work correctly
Product: obsolete Reporter: lingram <lingram>
Component: vcsgenericAssignee: Martin Entlicher <mentlicher>
Status: RESOLVED FIXED    
Severity: blocker CC: mihmax
Priority: P4    
Version: 3.x   
Hardware: Other   
OS: OpenVMS   
Issue Type: TASK Exception Reporter:
Attachments: Patch file generated by cvs diff for VcsCustomizer.java

Description lingram 2002-12-04 18:50:44 UTC
We need to make a permanent change to 
VcsCustomizer.java in vcsgeneric
to properly handle an empty "Working 
Dir" text box on the Generic VCS
Mount Wizard on OpenVMS. This change 
is as follows:

  Currently:  if (Utilities.isUnix())

  Change to:  if (Utilities.isUnix() ||
                  
(Utilities.getOperatingSystem() == 
Utilities.OS_VMS))
Comment 1 lingram 2002-12-04 18:51:21 UTC
Created attachment 8174 [details]
Patch file generated by cvs diff for VcsCustomizer.java
Comment 2 Martin Entlicher 2002-12-05 10:14:18 UTC
Maxym, do you agree with adding this into 3.4.1? It seems, that this
is necessary for OpenVMS.
The patch is trivial and should not cause any problems.
Comment 3 _ mihmax 2002-12-06 12:36:14 UTC
Do I agree or not is NOT an issue.
If it's a BUGFIX, feel free to include it into 3.4.1 codebase (P4 are
not subject to reviewing).

Sincere Max
Comment 4 _ mihmax 2002-12-06 12:39:52 UTC
BTW: The patch is really trivial, please commit. Thank you.
Comment 5 Martin Entlicher 2002-12-09 18:29:26 UTC
The patch was applied in both release341 branch and the main trunk.