File tree 2 files changed +8
-3
lines changed
2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ private Version() {
9
9
}
10
10
11
11
public static String id () {
12
- return "4.13 -SNAPSHOT" ;
12
+ return "4.14 -SNAPSHOT" ;
13
13
}
14
14
15
15
public static void main (String [] args ) {
Original file line number Diff line number Diff line change 15
15
public class FrameworkField extends FrameworkMember <FrameworkField > {
16
16
private final Field field ;
17
17
18
- FrameworkField (Field field ) {
18
+ /**
19
+ * Returns a new {@code FrameworkField} for {@code field}.
20
+ *
21
+ * <p>Access relaxed to {@code public} since version 4.14.
22
+ */
23
+ public FrameworkField (Field field ) {
19
24
if (field == null ) {
20
25
throw new NullPointerException (
21
26
"FrameworkField cannot be created without an underlying field." );
@@ -26,7 +31,7 @@ public class FrameworkField extends FrameworkMember<FrameworkField> {
26
31
// This field could be a public field in a package-scope base class
27
32
try {
28
33
field .setAccessible (true );
29
- } catch (SecurityException e ) {
34
+ } catch (SecurityException e ) {
30
35
// We may get an IllegalAccessException when we try to access the field
31
36
}
32
37
}
You can’t perform that action at this time.
0 commit comments