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

(-)CopyUtil.java (-5 / +13 lines)
Line 274 Link Here
274
                    subTargetFo = FileUtil.copyFile(subSourceFo, destFolder, subSourceFo.getName(), subSourceFo.getExt());
274
                     if ( Utilities.getOperatingSystem () == Utilities.OS_VMS 
275
--
275
                        && subSourceFo.getNameExt ().equalsIgnoreCase ( "_nbattrs.") ) 
276
                        subTargetFo = FileUtil.copyFile(subSourceFo, destFolder, subSourceFo.getNameExt(), subSourceFo.getExt());
277
                     else
278
                        subTargetFo = FileUtil.copyFile(subSourceFo, destFolder, subSourceFo.getName(), subSourceFo.getExt());
Line 317 Link Here
321
               
Lines 321-322 Link Here
321
                }
326
                } 
322
                subTargetFo = FileUtil.copyFile (subSourceFo, dest, subSourceFo.getName ());
327
                
323
--
328
                if ( Utilities.getOperatingSystem () == Utilities.OS_VMS 
329
                    && subSourceFo.getNameExt ().equalsIgnoreCase ( "_nbattrs.") ) 
330
                    subTargetFo = FileUtil.copyFile (subSourceFo, dest, subSourceFo.getNameExt ());
331
                else
332
                    subTargetFo = FileUtil.copyFile (subSourceFo, dest, subSourceFo.getName ());
(-)DefaultAttributes.java (-14 / +13 lines)
Line 156 Link Here
156
       
Line 159 Link Here
159
            // So we now have to change the existing "_nbattrs." file into ".nbattrs"
160
            // So we now have to copy the existing "_nbattrs." file into ".nbattrs"
160
--
Line 164 Link Here
164
                        renameVMSAttrFile (f);
165
                        change.delete(f+"/"+arr[0]); // NOI18N
165
--
Line 181 Link Here
181
            // So we now have to change the existing "_nbattrs." file into ".nbattrs"
182
            // So we now have to copy the existing "_nbattrs." file into ".nbattrs"
182
--
Line 186 Link Here
186
                        renameVMSAttrFile (f);
187
                        File fp = new File (f+"/"+".nbattrs");
187
--
188
                        if ( ! fp.exists() ) {
189
                            cache = null;
190
                            copyVMSAttrFile (f);
191
                        }
Line 210 Link Here
210
    private void renameVMSAttrFile (String f) throws IOException {
215
    private void copyVMSAttrFile (String f) throws IOException {
211
--
Line 214 Link Here
214
        try {    
219
        try {
215
--
220
            
Line 226 Link Here
226
            change.delete (f+"/"+"_nbattrs.");
232
            //change.delete (f+"/"+"_nbattrs.");
227
--

Return to bug 18455