Skip to content

Commit

Permalink
v3 migration guide for 'Document' removed methods
Browse files Browse the repository at this point in the history
  • Loading branch information
abelsromero committed May 30, 2023
1 parent 2e01e6b commit 7df16e8
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,5 @@ Map<String, Object> attributesMap = attributes.map();
----

include::partial$removal-of-deprecated-methods-in-asciidoctor.adoc[]

include::partial$removal-of-deprecated-methods-in-document.adoc[]
Original file line number Diff line number Diff line change
@@ -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)
----

0 comments on commit 7df16e8

Please sign in to comment.