You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@netbeans.apache.org by lk...@apache.org on 2019/07/30 05:08:20 UTC

[netbeans] branch master updated: [NETBEANS-2785] Move NIO2 File Watcher implementation in front of the platform dependent ones, makin it default. (#1349)

This is an automated email from the ASF dual-hosted git repository.

lkishalmi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans.git


The following commit(s) were added to refs/heads/master by this push:
     new 4eb32c4  [NETBEANS-2785] Move NIO2 File Watcher implementation in front of the platform dependent ones, makin it default. (#1349)
4eb32c4 is described below

commit 4eb32c4f72d1aa25316e1237a028a3b99528032d
Author: Laszlo Kishalmi <la...@gmail.com>
AuthorDate: Mon Jul 29 22:08:09 2019 -0700

    [NETBEANS-2785] Move NIO2 File Watcher implementation in front of the platform dependent ones, makin it default. (#1349)
---
 .../src/org/netbeans/modules/masterfs/watcher/macosx/OSXNotifier.java   | 2 +-
 .../src/org/netbeans/modules/masterfs/watcher/nio2/NioNotifier.java     | 2 +-
 .../org/netbeans/modules/masterfs/watcher/windows/WindowsNotifier.java  | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/platform/masterfs.macosx/src/org/netbeans/modules/masterfs/watcher/macosx/OSXNotifier.java b/platform/masterfs.macosx/src/org/netbeans/modules/masterfs/watcher/macosx/OSXNotifier.java
index 8eb13b9..ec09422 100644
--- a/platform/masterfs.macosx/src/org/netbeans/modules/masterfs/watcher/macosx/OSXNotifier.java
+++ b/platform/masterfs.macosx/src/org/netbeans/modules/masterfs/watcher/macosx/OSXNotifier.java
@@ -41,7 +41,7 @@ import org.openide.util.lookup.ServiceProvider;
  *
  * @author Tomas Zezula
  */
-@ServiceProvider(service=Notifier.class, position=300)
+@ServiceProvider(service=Notifier.class, position=100)
 public final class OSXNotifier extends Notifier<Void> {
     private static final Level DEBUG_LOG_LEVEL = Level.FINE;
     private static final Level PERF_LOG_LEVEL = Level.FINE;
diff --git a/platform/masterfs.nio2/src/org/netbeans/modules/masterfs/watcher/nio2/NioNotifier.java b/platform/masterfs.nio2/src/org/netbeans/modules/masterfs/watcher/nio2/NioNotifier.java
index cdeee9b..4089eba 100644
--- a/platform/masterfs.nio2/src/org/netbeans/modules/masterfs/watcher/nio2/NioNotifier.java
+++ b/platform/masterfs.nio2/src/org/netbeans/modules/masterfs/watcher/nio2/NioNotifier.java
@@ -37,7 +37,7 @@ import org.openide.util.lookup.ServiceProvider;
  *
  * @author Egor Ushakov <go...@netbeans.org>
  */
-@ServiceProvider(service=Notifier.class, position=1010)
+@ServiceProvider(service=Notifier.class, position=200)
 public class NioNotifier extends Notifier<WatchKey> {
     private final WatchService watcher;
 
diff --git a/platform/masterfs.windows/src/org/netbeans/modules/masterfs/watcher/windows/WindowsNotifier.java b/platform/masterfs.windows/src/org/netbeans/modules/masterfs/watcher/windows/WindowsNotifier.java
index cef9773..e68862c 100644
--- a/platform/masterfs.windows/src/org/netbeans/modules/masterfs/watcher/windows/WindowsNotifier.java
+++ b/platform/masterfs.windows/src/org/netbeans/modules/masterfs/watcher/windows/WindowsNotifier.java
@@ -53,7 +53,7 @@ import org.openide.util.lookup.ServiceProvider;
  *
  * @author nenik
  */
-@ServiceProvider(service=Notifier.class, position=100)
+@ServiceProvider(service=Notifier.class, position=400)
 public final class WindowsNotifier extends Notifier<Void> {
     static final Logger LOG = Logger.getLogger(WindowsNotifier.class.getName());
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@netbeans.apache.org
For additional commands, e-mail: commits-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists