@@ -144,7 +144,7 @@ static AnnotationWriter create(
144
144
// Write type_index and reserve space for num_element_value_pairs.
145
145
annotation .putShort (symbolTable .addConstantUtf8 (descriptor )).putShort (0 );
146
146
return new AnnotationWriter (
147
- symbolTable , /* useNamedValues = */ true , annotation , previousAnnotation );
147
+ symbolTable , /* useNamedValues= */ true , annotation , previousAnnotation );
148
148
}
149
149
150
150
/**
@@ -179,7 +179,7 @@ static AnnotationWriter create(
179
179
// Write type_index and reserve space for num_element_value_pairs.
180
180
typeAnnotation .putShort (symbolTable .addConstantUtf8 (descriptor )).putShort (0 );
181
181
return new AnnotationWriter (
182
- symbolTable , /* useNamedValues = */ true , typeAnnotation , previousAnnotation );
182
+ symbolTable , /* useNamedValues= */ true , typeAnnotation , previousAnnotation );
183
183
}
184
184
185
185
// -----------------------------------------------------------------------------------------------
@@ -284,7 +284,7 @@ public AnnotationVisitor visitAnnotation(final String name, final String descrip
284
284
}
285
285
// Write tag and type_index, and reserve 2 bytes for num_element_value_pairs.
286
286
annotation .put12 ('@' , symbolTable .addConstantUtf8 (descriptor )).putShort (0 );
287
- return new AnnotationWriter (symbolTable , /* useNamedValues = */ true , annotation , null );
287
+ return new AnnotationWriter (symbolTable , /* useNamedValues= */ true , annotation , null );
288
288
}
289
289
290
290
@ Override
@@ -303,7 +303,7 @@ public AnnotationVisitor visitArray(final String name) {
303
303
// visit the array elements. Its num_element_value_pairs will correspond to the number of array
304
304
// elements and will be stored in what is in fact num_values.
305
305
annotation .put12 ('[' , 0 );
306
- return new AnnotationWriter (symbolTable , /* useNamedValues = */ false , annotation , null );
306
+ return new AnnotationWriter (symbolTable , /* useNamedValues= */ false , annotation , null );
307
307
}
308
308
309
309
@ Override
@@ -321,7 +321,7 @@ public void visitEnd() {
321
321
322
322
/**
323
323
* Returns the size of a Runtime[In]Visible[Type]Annotations attribute containing this annotation
324
- * and all its <i>predecessors</i> (see {@link #previousAnnotation}) . Also adds the attribute name
324
+ * and all its <i>predecessors</i> (see {@link #previousAnnotation}. Also adds the attribute name
325
325
* to the constant pool of the class (if not null).
326
326
*
327
327
* @param attributeName one of "Runtime[In]Visible[Type]Annotations", or {@literal null}.
@@ -345,7 +345,7 @@ int computeAnnotationsSize(final String attributeName) {
345
345
346
346
/**
347
347
* Returns the size of the Runtime[In]Visible[Type]Annotations attributes containing the given
348
- * annotations and all their <i>predecessors</i> (see {@link #previousAnnotation}) . Also adds the
348
+ * annotations and all their <i>predecessors</i> (see {@link #previousAnnotation}. Also adds the
349
349
* attribute names to the constant pool of the class (if not null).
350
350
*
351
351
* @param lastRuntimeVisibleAnnotation The last runtime visible annotation of a field, method or
@@ -395,7 +395,7 @@ static int computeAnnotationsSize(
395
395
396
396
/**
397
397
* Puts a Runtime[In]Visible[Type]Annotations attribute containing this annotations and all its
398
- * <i>predecessors</i> (see {@link #previousAnnotation}) in the given ByteVector. Annotations are
398
+ * <i>predecessors</i> (see {@link #previousAnnotation} in the given ByteVector. Annotations are
399
399
* put in the same order they have been visited.
400
400
*
401
401
* @param attributeNameIndex the constant pool index of the attribute name (one of
@@ -427,7 +427,7 @@ void putAnnotations(final int attributeNameIndex, final ByteVector output) {
427
427
428
428
/**
429
429
* Puts the Runtime[In]Visible[Type]Annotations attributes containing the given annotations and
430
- * all their <i>predecessors</i> (see {@link #previousAnnotation}) in the given ByteVector.
430
+ * all their <i>predecessors</i> (see {@link #previousAnnotation} in the given ByteVector.
431
431
* Annotations are put in the same order they have been visited.
432
432
*
433
433
* @param symbolTable where the constants used in the AnnotationWriter instances are stored.
0 commit comments