summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Bruneton <ebruneton@free.fr>2023-11-18 14:43:21 +0100
committerEric Bruneton <ebruneton@free.fr>2023-11-18 14:43:21 +0100
commit008b649013ac470b7310c92508c4038d420e09e2 (patch)
treed3354844825ce425a3f05d8915c3d4f0113dbffe
parent651989bf4a71e6da799b0b2aa084eb3b82c8c612 (diff)
downloadow2-asm-008b649013ac470b7310c92508c4038d420e09e2.tar.gz
Fix Javadoc of ClassNode#outerClass.
-rw-r--r--asm-tree/src/main/java/org/objectweb/asm/tree/ClassNode.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/asm-tree/src/main/java/org/objectweb/asm/tree/ClassNode.java b/asm-tree/src/main/java/org/objectweb/asm/tree/ClassNode.java
index bd43dc71..3cbd221d 100644
--- a/asm-tree/src/main/java/org/objectweb/asm/tree/ClassNode.java
+++ b/asm-tree/src/main/java/org/objectweb/asm/tree/ClassNode.java
@@ -90,8 +90,8 @@ public class ClassNode extends ClassVisitor {
/**
* The internal name of the enclosing class of this class (see {@link
- * org.objectweb.asm.Type#getInternalName()}). Must be {@literal null} if this class has no
- * enclosing class, or if it is a local or anonymous class.
+ * org.objectweb.asm.Type#getInternalName()}). Must be {@literal null} if this class is not a
+ * local or anonymous class.
*/
public String outerClass;