Skip to content

Commit

Permalink
Fix javadoc for merged methods.
Browse files Browse the repository at this point in the history
  • Loading branch information
joehni committed Jan 30, 2018
1 parent 32c1c6e commit 18c3408
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public interface HierarchicalStreamReader extends ErrorReporter, Closeable {
* Peek the name of the next child. In situation where {@link #hasMoreChildren()} returns true, peek the tag name of
* the child.
*
* @since 1.4.2
* @since upcoming, was originally added in 1.4.2 to ExtendedHierarchicalStreamReader.
*/
String peekNextChild();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ public interface HierarchicalStreamWriter extends Closeable {

void startNode(String name);

/**
* @since upcoming, was originally added to ExtendedHierarchicalStreamWriter.
*/
void startNode(String name, Class<?> clazz);

void addAttribute(String name, String value);
Expand Down

0 comments on commit 18c3408

Please sign in to comment.