aboutsummaryrefslogtreecommitdiff
path: root/javaparser-core/src/main/java/com/github/javaparser/ast/type/ArrayType.java
diff options
context:
space:
mode:
Diffstat (limited to 'javaparser-core/src/main/java/com/github/javaparser/ast/type/ArrayType.java')
-rw-r--r--javaparser-core/src/main/java/com/github/javaparser/ast/type/ArrayType.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/javaparser-core/src/main/java/com/github/javaparser/ast/type/ArrayType.java b/javaparser-core/src/main/java/com/github/javaparser/ast/type/ArrayType.java
index 6e54be193..2850800a8 100644
--- a/javaparser-core/src/main/java/com/github/javaparser/ast/type/ArrayType.java
+++ b/javaparser-core/src/main/java/com/github/javaparser/ast/type/ArrayType.java
@@ -76,7 +76,9 @@ public final class ArrayType extends ReferenceType implements NodeWithAnnotation
this(type, Origin.TYPE, nodeList(annotations));
}
- /**This constructor is used by the parser and is considered private.*/
+ /**
+ * This constructor is used by the parser and is considered private.
+ */
@Generated("com.github.javaparser.generator.core.node.MainConstructorGenerator")
public ArrayType(TokenRange tokenRange, Type componentType, Origin origin, NodeList<AnnotationExpr> annotations) {
super(tokenRange, annotations);