Copy the FS properties from the former CVS filesystem. ui_settings_categories_after_merge
authormentlicher@netbeans.org
Tue, 02 Oct 2001 13:20:11 +0000
changeset 6619ce1ea4f3f85
parent 660 e06b449ec2c6
child 662 0134962ae083
Copy the FS properties from the former CVS filesystem.
This is a fix of issue #16083.
vcscvs/compat/src/org/netbeans/modules/vcs/cmdline/CvsFileSystem.java
     1.1 --- a/vcscvs/compat/src/org/netbeans/modules/vcs/cmdline/CvsFileSystem.java	Mon Oct 01 22:36:17 2001 +0000
     1.2 +++ b/vcscvs/compat/src/org/netbeans/modules/vcs/cmdline/CvsFileSystem.java	Tue Oct 02 13:20:11 2001 +0000
     1.3 @@ -113,6 +113,14 @@
     1.4          }
     1.5           */
     1.6          fs.setVariables(vars);
     1.7 +        fs.setExpertMode(isExpertMode());
     1.8 +        fs.setAnnotationPattern(getAnnotationPattern());
     1.9 +        fs.setAutoRefresh(getAutoRefresh());
    1.10 +        fs.setCommandNotification(isCommandNotification());
    1.11 +        fs.setOffLine(isOffLine());
    1.12 +        fs.setDebug(getDebug());
    1.13 +        fs.setProcessUnimportantFiles(isProcessUnimportantFiles());
    1.14 +        fs.setHideShadowFiles(isHideShadowFiles());
    1.15          return fs;
    1.16      }
    1.17