-
Notifications
You must be signed in to change notification settings - Fork 172
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v3 migration guide for 'Document' removed methods
Fixes #1202
- Loading branch information
1 parent
2e01e6b
commit 7df16e8
Showing
2 changed files
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
docs/modules/guides/partials/removal-of-deprecated-methods-in-document.adoc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
---- |