4343public class FieldNode extends FieldVisitor {
4444
4545 /**
46- * The field's access flags (see {@link org.objectweb .asm.Opcodes}). This field also indicates if
46+ * The field's access flags (see {@link scala.tools .asm.Opcodes}). This field also indicates if
4747 * the field is synthetic and/or deprecated.
4848 */
4949 public int access ;
5050
5151 /** The field's name. */
5252 public String name ;
5353
54- /** The field's descriptor (see {@link org.objectweb .asm.Type}). */
54+ /** The field's descriptor (see {@link scala.tools .asm.Type}). */
5555 public String desc ;
5656
5757 /** The field's signature. May be {@literal null}. */
@@ -83,10 +83,10 @@ public class FieldNode extends FieldVisitor {
8383 * Constructs a new {@link FieldNode}. <i>Subclasses must not use this constructor</i>. Instead,
8484 * they must use the {@link #FieldNode(int, int, String, String, String, Object)} version.
8585 *
86- * @param access the field's access flags (see {@link org.objectweb .asm.Opcodes}). This parameter
86+ * @param access the field's access flags (see {@link scala.tools .asm.Opcodes}). This parameter
8787 * also indicates if the field is synthetic and/or deprecated.
8888 * @param name the field's name.
89- * @param descriptor the field's descriptor (see {@link org.objectweb .asm.Type}).
89+ * @param descriptor the field's descriptor (see {@link scala.tools .asm.Type}).
9090 * @param signature the field's signature.
9191 * @param value the field's initial value. This parameter, which may be {@literal null} if the
9292 * field does not have an initial value, must be an {@link Integer}, a {@link Float}, a {@link
@@ -110,10 +110,10 @@ public FieldNode(
110110 *
111111 * @param api the ASM API version implemented by this visitor. Must be one of the {@code
112112 * ASM}<i>x</i> values in {@link Opcodes}.
113- * @param access the field's access flags (see {@link org.objectweb .asm.Opcodes}). This parameter
113+ * @param access the field's access flags (see {@link scala.tools .asm.Opcodes}). This parameter
114114 * also indicates if the field is synthetic and/or deprecated.
115115 * @param name the field's name.
116- * @param descriptor the field's descriptor (see {@link org.objectweb .asm.Type}).
116+ * @param descriptor the field's descriptor (see {@link scala.tools .asm.Type}).
117117 * @param signature the field's signature.
118118 * @param value the field's initial value. This parameter, which may be {@literal null} if the
119119 * field does not have an initial value, must be an {@link Integer}, a {@link Float}, a {@link
0 commit comments