@@ -68,7 +68,7 @@ public interface IndexAccessor extends TargetedAccessor {
68
68
* @throws AccessException if there is any problem determining whether the
69
69
* index can be read
70
70
*/
71
- boolean canRead (EvaluationContext context , @ Nullable Object target , Object index ) throws AccessException ;
71
+ boolean canRead (EvaluationContext context , Object target , Object index ) throws AccessException ;
72
72
73
73
/**
74
74
* Called to read an index from a specified target object.
@@ -81,7 +81,7 @@ public interface IndexAccessor extends TargetedAccessor {
81
81
* @throws AccessException if there is any problem reading the index value
82
82
*/
83
83
// TODO Change return type to TypedValue to avoid package cycle.
84
- ValueRef read (EvaluationContext context , @ Nullable Object target , Object index ) throws AccessException ;
84
+ ValueRef read (EvaluationContext context , Object target , Object index ) throws AccessException ;
85
85
86
86
/**
87
87
* Called to determine if this index accessor is able to write to a specified
@@ -93,7 +93,7 @@ public interface IndexAccessor extends TargetedAccessor {
93
93
* @throws AccessException if there is any problem determining whether the
94
94
* index can be written to
95
95
*/
96
- boolean canWrite (EvaluationContext context , @ Nullable Object target , Object index ) throws AccessException ;
96
+ boolean canWrite (EvaluationContext context , Object target , Object index ) throws AccessException ;
97
97
98
98
/**
99
99
* Called to write to an index on a specified target object.
@@ -104,7 +104,7 @@ public interface IndexAccessor extends TargetedAccessor {
104
104
* @param newValue the new value for the index
105
105
* @throws AccessException if there is any problem writing to the index value
106
106
*/
107
- void write (EvaluationContext context , @ Nullable Object target , Object index , @ Nullable Object newValue )
107
+ void write (EvaluationContext context , Object target , Object index , @ Nullable Object newValue )
108
108
throws AccessException ;
109
109
110
110
}
0 commit comments