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

(-)a/masterfs/src/org/netbeans/modules/masterfs/watcher/Watcher.java (-1 / +9 lines)
Lines 206-212 Link Here
206
                return new LinuxNotifier();
206
                return new LinuxNotifier();
207
            }
207
            }
208
            if (Utilities.getOperatingSystem() == Utilities.OS_MAC) {
208
            if (Utilities.getOperatingSystem() == Utilities.OS_MAC) {
209
                return new OSXNotifier();
209
                try {
210
                    final OSXNotifier notifier = new OSXNotifier();
211
                    notifier.start();
212
                    return notifier;
213
                } catch (IOException ioe) {
214
                    LOG.log(Level.INFO, null, ioe);
215
                } catch (InterruptedException ie) {
216
                    LOG.log(Level.INFO, null, ie);
217
                }
210
            }
218
            }
211
        } catch (LinkageError x) {
219
        } catch (LinkageError x) {
212
            LOG.log(Level.INFO, null, x);
220
            LOG.log(Level.INFO, null, x);

Return to bug 190491