Skip to content

Commit

Permalink
Issue #174 - Adding javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
pecko committed Sep 30, 2015
1 parent 62505b5 commit 49c4965
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/test/java/com/jcabi/aspects/aj/NamedThreadsTest.java
Expand Up @@ -86,11 +86,17 @@ private class StringAppender extends AppenderSkeleton {
* String buffer.
*/
private final StringBuilder buffer = new StringBuilder();
/**
* {@inheritDoc}
*/
@Override
public boolean requiresLayout() {
return false;
}

/**
* {@inheritDoc}
*/
@Override
// @checkstyle MethodBodyCommentsCheck (2 lines)
public void close() {
Expand All @@ -105,6 +111,9 @@ public String getBuffer() {
return this.buffer.toString();
}

/**
* {@inheritDoc}
*/
@Override
protected void append(final LoggingEvent event) {
this.buffer.append(event.getMessage());
Expand Down

0 comments on commit 49c4965

Please sign in to comment.