This is an automated email from the ASF dual-hosted git repository. mklaehn pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/netbeans.git
commit bff7d9d2d597b94161b1b1cebf1a143b7b96ea9e Author: Martin Klähn <[email protected]> AuthorDate: Fri Feb 18 11:09:29 2022 +0100 Use the blessed modifier order in projects located in nbbuild projects --- nbbuild/antsrc/org/netbeans/nbbuild/AutoUpdateCatalogParser.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nbbuild/antsrc/org/netbeans/nbbuild/AutoUpdateCatalogParser.java b/nbbuild/antsrc/org/netbeans/nbbuild/AutoUpdateCatalogParser.java index 6d06426..b19a88e 100644 --- a/nbbuild/antsrc/org/netbeans/nbbuild/AutoUpdateCatalogParser.java +++ b/nbbuild/antsrc/org/netbeans/nbbuild/AutoUpdateCatalogParser.java @@ -130,10 +130,10 @@ class AutoUpdateCatalogParser extends DefaultHandler { private static Map<String, ModuleItem> cache; private static URI cacheURI; - synchronized static Map<String, ModuleItem> getUpdateItems (URL url, URL provider, Task task) throws IOException { + static synchronized Map<String, ModuleItem> getUpdateItems (URL url, URL provider, Task task) throws IOException { return getUpdateItems(url, null, provider, task); } - synchronized static Map<String, ModuleItem> getUpdateItems (URL url, InputStream data, URL provider, Task task) throws IOException { + static synchronized Map<String, ModuleItem> getUpdateItems (URL url, InputStream data, URL provider, Task task) throws IOException { Map<String, ModuleItem> items = new HashMap<> (); URI base; --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
