diff --git a/docs/modules/guides/pages/api-migration-guide-v25x-to-v30.adoc b/docs/modules/guides/pages/api-migration-guide-v25x-to-v30.adoc index ad34e5bf..c071e799 100644 --- a/docs/modules/guides/pages/api-migration-guide-v25x-to-v30.adoc +++ b/docs/modules/guides/pages/api-migration-guide-v25x-to-v30.adoc @@ -59,3 +59,5 @@ Map attributesMap = attributes.map(); ---- include::partial$removal-of-deprecated-methods-in-asciidoctor.adoc[] + +include::partial$removal-of-deprecated-methods-in-document.adoc[] diff --git a/docs/modules/guides/partials/removal-of-deprecated-methods-in-document.adoc b/docs/modules/guides/partials/removal-of-deprecated-methods-in-document.adoc new file mode 100644 index 00000000..b5908629 --- /dev/null +++ b/docs/modules/guides/partials/removal-of-deprecated-methods-in-document.adoc @@ -0,0 +1,19 @@ +== Removal of deprecated methods in `org.asciidoctor.ast.Document` + +Several methods in `org.asciidoctor.ast.Document` that were marked as `@Deprecated` have been removed. + +For each of the removed methods, the equivalent can be found below. + +[,java] +.Removed deprecated methods +---- +String doctitle(); +boolean basebackend(String backend); +---- + +[,java] +.Final methods +---- +String getDoctitle(); +boolean isBasebackend(String backend); +----