Skip to content

Commit 5b70c69

Browse files
committed
Annotate custom syntax classes with NoDoc
1 parent e39f093 commit 5b70c69

4 files changed

Lines changed: 8 additions & 0 deletions

File tree

src/main/java/org/skriptlang/reflect/syntax/custom/condition/CustomCondition.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
package org.skriptlang.reflect.syntax.custom.condition;
22

3+
import ch.njol.skript.doc.NoDoc;
34
import ch.njol.skript.lang.Condition;
45
import ch.njol.skript.lang.Expression;
56
import ch.njol.skript.lang.SkriptParser.ParseResult;
@@ -11,6 +12,7 @@
1112
import org.skriptlang.reflect.syntax.custom.shared.CustomSyntax;
1213
import org.skriptlang.reflect.syntax.custom.shared.CustomSyntaxCore;
1314

15+
@NoDoc
1416
public class CustomCondition extends Condition implements CustomSyntax {
1517

1618
private final CustomConditionInfo info;

src/main/java/org/skriptlang/reflect/syntax/custom/effect/CustomEffect.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
package org.skriptlang.reflect.syntax.custom.effect;
22

3+
import ch.njol.skript.doc.NoDoc;
34
import ch.njol.skript.lang.Effect;
45
import ch.njol.skript.lang.Expression;
56
import ch.njol.skript.lang.SkriptParser.ParseResult;
@@ -11,6 +12,7 @@
1112
import org.skriptlang.reflect.syntax.custom.shared.CustomSyntax;
1213
import org.skriptlang.reflect.syntax.custom.shared.CustomSyntaxCore;
1314

15+
@NoDoc
1416
public class CustomEffect extends Effect implements CustomSyntax {
1517

1618
private final CustomEffectInfo info;

src/main/java/org/skriptlang/reflect/syntax/custom/event/CustomEvent.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
package org.skriptlang.reflect.syntax.custom.event;
22

3+
import ch.njol.skript.doc.NoDoc;
34
import ch.njol.skript.lang.Literal;
45
import ch.njol.skript.lang.SkriptEvent;
56
import ch.njol.skript.lang.SkriptParser.ParseResult;
@@ -10,6 +11,7 @@
1011
import org.skriptlang.reflect.syntax.custom.shared.CustomSyntax;
1112
import org.skriptlang.reflect.syntax.custom.shared.CustomSyntaxCore;
1213

14+
@NoDoc
1315
public class CustomEvent extends SkriptEvent implements CustomSyntax {
1416

1517
private final CustomEventInfo info;

src/main/java/org/skriptlang/reflect/syntax/custom/expression/CustomExpression.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package org.skriptlang.reflect.syntax.custom.expression;
22

33
import ch.njol.skript.classes.Changer.ChangeMode;
4+
import ch.njol.skript.doc.NoDoc;
45
import ch.njol.skript.lang.Expression;
56
import ch.njol.skript.lang.SkriptParser.ParseResult;
67
import ch.njol.skript.lang.Trigger;
@@ -12,6 +13,7 @@
1213
import org.skriptlang.reflect.syntax.custom.shared.CustomSyntax;
1314
import org.skriptlang.reflect.syntax.custom.shared.CustomSyntaxCore;
1415

16+
@NoDoc
1517
public class CustomExpression<T> extends SimpleExpression<T> implements CustomSyntax {
1618

1719
private final CustomExpressionInfo<T> info;

0 commit comments

Comments
 (0)