Skip to content

Commit

Permalink
Add api dump
Browse files Browse the repository at this point in the history
  • Loading branch information
IgnatBeresnev committed Apr 28, 2022
1 parent 98c52d4 commit 2b3946e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion plugins/javadoc/api/javadoc.api
Expand Up @@ -119,7 +119,6 @@ public final class org/jetbrains/dokka/javadoc/pages/DeprecatedPageSection : jav
public final fun getCaption ()Ljava/lang/String;
public final fun getHeader ()Ljava/lang/String;
public final fun getId ()Ljava/lang/String;
public final fun getPriority ()I
public static fun valueOf (Ljava/lang/String;)Lorg/jetbrains/dokka/javadoc/pages/DeprecatedPageSection;
public static fun values ()[Lorg/jetbrains/dokka/javadoc/pages/DeprecatedPageSection;
}
Expand Down
Expand Up @@ -318,7 +318,6 @@ class DeprecatedNode(val name: String, val address: DRI, val description: List<C
}

enum class DeprecatedPageSection(val id: String, val caption: String, val header: String) {
DeprecatedForRemoval("forRemoval", "For Removal", "Element"),
DeprecatedModules("module", "Modules", "Module"),
DeprecatedInterfaces("interface", "Interfaces", "Interface"),
DeprecatedClasses("class", "Classes", "Class"),
Expand All @@ -327,7 +326,8 @@ enum class DeprecatedPageSection(val id: String, val caption: String, val header
DeprecatedMethods("method", "Methods", "Method"),
DeprecatedConstructors("constructor", "Constructors", "Constructor"),
DeprecatedEnums("enum", "Enums", "Enum"),
DeprecatedEnumConstants("enum.constant", "Enum Constants", "Enum Constant");
DeprecatedEnumConstants("enum.constant", "Enum Constants", "Enum Constant"),
DeprecatedForRemoval("forRemoval", "For Removal", "Element");

internal fun getPosition() = ordinal
}
Expand Down

0 comments on commit 2b3946e

Please sign in to comment.