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

(-)a/project.ant/src/org/netbeans/spi/project/support/ant/ProjectProperties.java (+2 lines)
Lines 303-308 Link Here
303
                                OutputStream os = _f.getOutputStream(_lock[0]);
303
                                OutputStream os = _f.getOutputStream(_lock[0]);
304
                                try {
304
                                try {
305
                                    os.write(data);
305
                                    os.write(data);
306
                                    cachedPropertiesFromFile = properties;
306
                                } finally {
307
                                } finally {
307
                                    os.close();
308
                                    os.close();
308
                                }
309
                                }
Lines 317-322 Link Here
317
                                                    OutputStream os = _f.getOutputStream();
318
                                                    OutputStream os = _f.getOutputStream();
318
                                                    try {
319
                                                    try {
319
                                                        os.write(data);
320
                                                        os.write(data);
321
                                                        cachedPropertiesFromFile = properties;
320
                                                    } finally {
322
                                                    } finally {
321
                                                        os.close();
323
                                                        os.close();
322
                                                    }
324
                                                    }

Return to bug 242468