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

(-)a/xml.multiview/src/org/netbeans/modules/xml/multiview/XmlMultiViewDataObject.java (+6 lines)
Lines 383-388 Link Here
383
        public void loadData() {
383
        public void loadData() {
384
            FileObject file = getPrimaryFile();
384
            FileObject file = getPrimaryFile();
385
            if (fileTime == file.lastModified().getTime()) {
385
            if (fileTime == file.lastModified().getTime()) {
386
                // on base of issue #132922
387
                // when the file is deleted or IO error happened, lastModified time
388
                // is zero and the buffer can stay uninitialized
389
                if (!file.isValid()) {
390
                    buffer = ""; //NOI18N
391
                }
386
                return;
392
                return;
387
            }
393
            }
388
            try {
394
            try {

Return to bug 132922