Skip to content

Commit 295c047

Browse files
committedJan 25, 2022
8279242: Reflection newInstance() error message when constructor has no access modifiers could use improvement
Reviewed-by: iris, dholmes, mchung
1 parent 841eae6 commit 295c047

File tree

1 file changed

+13
-9
lines changed

1 file changed

+13
-9
lines changed
 

‎src/java.base/share/classes/jdk/internal/reflect/Reflection.java

+13-9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2001, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2001, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -379,11 +379,8 @@ public static IllegalAccessException newIllegalAccessException(Class<?> currentC
379379

380380
String msg = currentClass + currentSuffix + " cannot access ";
381381
if (m2.isExported(memberPackageName, m1)) {
382-
383382
// module access okay so include the modifiers in the message
384-
msg += "a member of " + memberClass + memberSuffix +
385-
" with modifiers \"" + Modifier.toString(modifiers) + "\"";
386-
383+
msg += "a member of " + memberClass + memberSuffix + msgSuffix(modifiers);
387384
} else {
388385
// module access failed
389386
msg += memberClass + memberSuffix+ " because "
@@ -410,11 +407,8 @@ private static IllegalAccessException newIllegalAccessException(Class<?> memberC
410407

411408
String msg = "JNI attached native thread (null caller frame) cannot access ";
412409
if (m2.isExported(memberPackageName)) {
413-
414410
// module access okay so include the modifiers in the message
415-
msg += "a member of " + memberClass + memberSuffix +
416-
" with modifiers \"" + Modifier.toString(modifiers) + "\"";
417-
411+
msg += "a member of " + memberClass + memberSuffix + msgSuffix(modifiers);
418412
} else {
419413
// module access failed
420414
msg += memberClass + memberSuffix+ " because "
@@ -424,6 +418,16 @@ private static IllegalAccessException newIllegalAccessException(Class<?> memberC
424418
return new IllegalAccessException(msg);
425419
}
426420

421+
private static String msgSuffix(int modifiers) {
422+
boolean packageAccess =
423+
((Modifier.PRIVATE |
424+
Modifier.PROTECTED |
425+
Modifier.PUBLIC) & modifiers) == 0;
426+
return packageAccess ?
427+
" with package access" :
428+
" with modifiers \"" + Modifier.toString(modifiers) + "\"";
429+
}
430+
427431
/**
428432
* Returns true if {@code currentClass} and {@code memberClass}
429433
* are nestmates - that is, if they have the same nesthost as

0 commit comments

Comments
 (0)
Please sign in to comment.