The FS relative mount point set when MODULE variable is changed. BLD200308250100
authormentlicher@netbeans.org
Fri, 22 Aug 2003 20:53:18 +0000
changeset 3514a61b25cf439b
parent 3513 a25fe9e5ba55
child 3515 22fff53e6a2f
The FS relative mount point set when MODULE variable is changed.
This is a fix of issue #34721.
vcs.advanced/src/org/netbeans/modules/vcs/advanced/VcsCustomizer.java
     1.1 --- a/vcs.advanced/src/org/netbeans/modules/vcs/advanced/VcsCustomizer.java	Fri Aug 22 20:50:52 2003 +0000
     1.2 +++ b/vcs.advanced/src/org/netbeans/modules/vcs/advanced/VcsCustomizer.java	Fri Aug 22 20:53:18 2003 +0000
     1.3 @@ -1871,6 +1871,10 @@
     1.4              changeRootDir(newValue);
     1.5              fsVars.put("MODULE", relMountTextField.getText());
     1.6          } else if ("MODULE".equals(varName)) {
     1.7 +            try {
     1.8 +                fileSystem.setRelativeMountPoint(newValue);
     1.9 +            } catch (PropertyVetoException pvex) {
    1.10 +            } catch (IOException ioex) {}
    1.11              relMountTextField.setText(newValue);
    1.12              rootDirChanged();
    1.13          } else {