Skip to content

Commit

Permalink
Issue jcabi#174 - Adding javadoc for class
Browse files Browse the repository at this point in the history
  • Loading branch information
pecko committed Sep 30, 2015
1 parent 49c4965 commit b7f479b
Showing 1 changed file with 5 additions and 10 deletions.
15 changes: 5 additions & 10 deletions src/test/java/com/jcabi/aspects/aj/NamedThreadsTest.java
Expand Up @@ -80,23 +80,21 @@ public void run() {
);
}

/**
* Simple string appender.
* @author Haris Peco (snpe60@gmail.com)
* @version $Id

This comment has been minimized.

Copy link
@gvlasov

gvlasov Sep 30, 2015

@pecko @pinaf @since javadoc tag is missing.

*/
@SuppressWarnings("PMD.AvoidStringBufferField")
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 @@ -111,9 +109,6 @@ 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 b7f479b

Please sign in to comment.