@@ -234,11 +234,12 @@ static MethodHandle arrayLengthGetter(Class<?> arrayType) {
234
234
* <p>
235
235
* A dynamic method call for variable {@code x} of type {@code def} looks like:
236
236
* {@code x.method(args...)}
237
+ * </p>
237
238
* <p>
238
239
* This method traverses {@code recieverClass}'s class hierarchy (including interfaces)
239
240
* until it finds a matching whitelisted method. If one is not found, it throws an exception.
240
241
* Otherwise it returns a handle to the matching method.
241
- * <p>
242
+ * </ p>
242
243
* @param painlessLookup the whitelist
243
244
* @param functions user defined functions and lambdas
244
245
* @param constants available constants to be used if the method has the {@code InjectConstantAnnotation}
@@ -468,6 +469,7 @@ private static MethodHandle lookupReferenceInternal(
468
469
* <p>
469
470
* A dynamic field load for variable {@code x} of type {@code def} looks like:
470
471
* {@code y = x.field}
472
+ * </p>
471
473
* <p>
472
474
* The following field loads are allowed:
473
475
* <ul>
@@ -482,7 +484,7 @@ private static MethodHandle lookupReferenceInternal(
482
484
* This method traverses {@code recieverClass}'s class hierarchy (including interfaces)
483
485
* until it finds a matching whitelisted getter. If one is not found, it throws an exception.
484
486
* Otherwise it returns a handle to the matching getter.
485
- * <p>
487
+ * </ p>
486
488
* @param painlessLookup the whitelist
487
489
* @param receiverClass Class of the object to retrieve the field from.
488
490
* @param name Name of the field.
@@ -537,7 +539,7 @@ static MethodHandle lookupGetter(PainlessLookup painlessLookup, Class<?> receive
537
539
* This method traverses {@code recieverClass}'s class hierarchy (including interfaces)
538
540
* until it finds a matching whitelisted setter. If one is not found, it throws an exception.
539
541
* Otherwise it returns a handle to the matching setter.
540
- * <p>
542
+ * </ p>
541
543
* @param painlessLookup the whitelist
542
544
* @param receiverClass Class of the object to retrieve the field from.
543
545
* @param name Name of the field.
0 commit comments