Skip to content

Commit

Permalink
add default constructor to AppendableWriter
Browse files Browse the repository at this point in the history
  • Loading branch information
hohwille committed Sep 22, 2024
1 parent a5cd761 commit 8cf9711
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,14 @@ public class AppendableWriter extends Writer {
/** The delegate. */
private final Appendable appendable;

/**
* The constructor.
*/
public AppendableWriter() {

this(new StringBuilder());
}

/**
* The constructor.
*
Expand Down

0 comments on commit 8cf9711

Please sign in to comment.