-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(#215): Add several useful constructors for SaxonDocument #216
Conversation
@yegor256 Could you have a look, please? |
@yegor256 Reminder |
@@ -86,6 +93,56 @@ public SaxonDocument(final String text) { | |||
this(SaxonDocument.node(text)); | |||
} | |||
|
|||
/** | |||
* Public constructor from XML as byte array. | |||
* @param data XML document body as byte array. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@volodya-lombrozo it's a good practice to add @since
to a method or a class when you introduce it to the code base: https://stackoverflow.com/questions/578363/javadoc-version-and-since
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@yegor256 I've added the "since" tag
5bf467d
to
4f18e89
Compare
@yegor256 Could you take a look one more time, please? |
@rultor merge |
@rultor release, tag is |
Job |
Add several useful constructors for
SaxonDocument
.Closes: #215