errors | others warnings | infos | forbidden warnings | discouraged warnings |
top | others warnings | infos | forbidden warnings | discouraged warnings |
top | errors | infos | forbidden warnings | discouraged warnings |
1. WARNING in /src/org/eclipse/e4/core/internal/services/MessageFactoryServiceImpl.java (at line 110) instance = AccessController.doPrivileged((PrivilegedAction<M>) () -> createInstance(locale, messages, annotation, provider)); The method doPrivileged(PrivilegedAction<M>) from the type AccessController is deprecated |
1. WARNING in /src/org/eclipse/e4/core/internal/services/ResourceBundleHelper.java (at line 714) .doPrivileged((PrivilegedExceptionAction<InputStream>) () -> { InputStream is = null; URL url = osgiBundle.getEntry(resourceName); if (url != null) { URLConnection connection = url.openConnection(); if (connection != null) { // Disable caches to get fresh data for // reloading. connection.setUseCaches(false); is = connection.getInputStream(); } } return is; }); The method doPrivileged(PrivilegedExceptionAction<InputStream>) from the type AccessController is deprecated |
1. WARNING in /src/org/eclipse/e4/core/services/nls/BaseMessageRegistry.java (at line 259) AccessController.doPrivileged((PrivilegedAction<Object>) () -> { m.setAccessible(true); try { m.invoke(control, value); } catch (Exception e) { // if anything fails on invoke we unregister the // binding to avoid further issues e.g. this can // happen in case of disposed SWT controls bindings.remove(MessageConsumerImplementation.this); Logger log = consumerLogger; if (log != null) { log.info( "Error on invoke '{}' on '{}' with error message '{}'. Binding is removed.", m.getName(), control.getClass(), e.getMessage()); } } return null; }); The method doPrivileged(PrivilegedAction<Object>) from the type AccessController is deprecated |
errors | others warnings | forbidden warnings | discouraged warnings |
top | errors | infos | others warnings | discouraged warnings |
top | errors | infos | others warnings | forbidden warnings |