8276629: Use blessed modifier order in core-libs code

Reviewed-by: dholmes, aefimov, dfuchs, mchung, iris
This commit is contained in:
Magnus Ihse Bursie 2021-11-04 17:02:42 +00:00
parent 7bb2173383
commit 1533b8191b
28 changed files with 44 additions and 44 deletions

View file

@ -226,7 +226,7 @@ public class RowSetProvider {
*
*/
@SuppressWarnings("removal")
static private ClassLoader getContextClassLoader() throws SecurityException {
private static ClassLoader getContextClassLoader() throws SecurityException {
return AccessController.doPrivileged(new PrivilegedAction<ClassLoader>() {
public ClassLoader run() {
@ -252,7 +252,7 @@ public class RowSetProvider {
* context class loader followed by the current class loader.
* @return The class which was loaded
*/
static private Class<?> getFactoryClass(String factoryClassName, ClassLoader cl,
private static Class<?> getFactoryClass(String factoryClassName, ClassLoader cl,
boolean doFallback) throws ClassNotFoundException {
Class<?> factoryClass = null;
@ -284,7 +284,7 @@ public class RowSetProvider {
* Use the ServiceLoader mechanism to load the default RowSetFactory
* @return default RowSetFactory Implementation
*/
static private RowSetFactory loadViaServiceLoader() throws SQLException {
private static RowSetFactory loadViaServiceLoader() throws SQLException {
RowSetFactory theFactory = null;
try {
trace("***in loadViaServiceLoader():");
@ -310,7 +310,7 @@ public class RowSetProvider {
* or a {@code SecurityException} occurs.
*/
@SuppressWarnings("removal")
static private String getSystemProperty(final String propName) {
private static String getSystemProperty(final String propName) {
String property = null;
try {
property = AccessController.doPrivileged(new PrivilegedAction<String>() {