diff --git a/jOOQ-test/src/org/jooq/test/_/PrettyPrinter.java b/jOOQ-test/src/org/jooq/test/_/PrettyPrinter.java
index 7e180dc7fd..0894d3bcfa 100644
--- a/jOOQ-test/src/org/jooq/test/_/PrettyPrinter.java
+++ b/jOOQ-test/src/org/jooq/test/_/PrettyPrinter.java
@@ -44,7 +44,7 @@ import org.jooq.impl.Executor;
import org.jooq.tools.StringUtils;
/**
- * An execute listener that does pretty printing of every executed statement
+ * An execute listener that does pretty printing of every executed statement.
*
* @author Lukas Eder
*/
diff --git a/jOOQ-test/src/org/jooq/test/_/TestStatisticsListener.java b/jOOQ-test/src/org/jooq/test/_/TestStatisticsListener.java
index 2b9f45afe3..cc0ce1df70 100644
--- a/jOOQ-test/src/org/jooq/test/_/TestStatisticsListener.java
+++ b/jOOQ-test/src/org/jooq/test/_/TestStatisticsListener.java
@@ -42,14 +42,20 @@ import org.jooq.ExecuteContext;
import org.jooq.ExecuteType;
import org.jooq.impl.DefaultExecuteListener;
+/**
+ * An ExecuteListener that counts the number of executions in all
+ * integration tests.
+ *
+ * @author Lukas Eder
+ */
public class TestStatisticsListener extends DefaultExecuteListener {
/**
* Generated UID
*/
- private static final long serialVersionUID = 7399239846062763212L;
+ private static final long serialVersionUID = 7399239846062763212L;
- public static Map STATISTICS = new HashMap();
+ public static Map STATISTICS = new HashMap();
@Override
public synchronized void start(ExecuteContext ctx) {