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

(-)DatabaseOption.java (+14 lines)
Line 30 Link Here
30
import org.openide.filesystems.FileObject;
31
import org.openide.filesystems.Repository;
Line 66 Link Here
68
        
69
        deleteAdaptorsFolder();
Line 255 Link Here
259
        }
260
    }
261
    
262
    private void deleteAdaptorsFolder() {    
263
        FileObject fo = Repository.getDefault().getDefaultFileSystem().findResource("Database"); //NOI18N
264
        try {
265
            if (fo != null)
266
                fo.delete();
267
        } catch (IOException exc) {
268
            //delete action failed - ignore

Return to bug 41105