aboutsummaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit.junit/src/org/eclipse/jgit/junit/RepeatRule.java
diff options
context:
space:
mode:
authorMatthias Sohn <matthias.sohn@sap.com>2017-12-17 19:50:13 +0100
committerMatthias Sohn <matthias.sohn@sap.com>2017-12-17 20:21:54 +0100
commita90b75b47aff1c7139056352bf0145858ea3742c (patch)
treeff716f2f310e2b2ff52f60c308bc6a4cdb92a6b6 /org.eclipse.jgit.junit/src/org/eclipse/jgit/junit/RepeatRule.java
parent0b131b731263fbddebf1026a71a4bba8ce64574f (diff)
downloadjgit-a90b75b47aff1c7139056352bf0145858ea3742c.tar.gz
jgit-a90b75b47aff1c7139056352bf0145858ea3742c.zip
Fix javadoc in org.eclipse.jgit.junit
Change-Id: I1107e6a82849ac329361baabb5c481d86ea6dc9e Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.jgit.junit/src/org/eclipse/jgit/junit/RepeatRule.java')
-rw-r--r--org.eclipse.jgit.junit/src/org/eclipse/jgit/junit/RepeatRule.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/org.eclipse.jgit.junit/src/org/eclipse/jgit/junit/RepeatRule.java b/org.eclipse.jgit.junit/src/org/eclipse/jgit/junit/RepeatRule.java
index 4230073c1b..8165738ed8 100644
--- a/org.eclipse.jgit.junit/src/org/eclipse/jgit/junit/RepeatRule.java
+++ b/org.eclipse.jgit.junit/src/org/eclipse/jgit/junit/RepeatRule.java
@@ -51,8 +51,8 @@ import org.junit.runner.Description;
import org.junit.runners.model.Statement;
/**
- * {@link TestRule} which enables to run the same JUnit test repeatedly. Add
- * this rule to the test class
+ * {@link org.junit.rules.TestRule} which enables to run the same JUnit test
+ * repeatedly. Add this rule to the test class
*
* <pre>
* public class MyTest {
@@ -118,6 +118,7 @@ public class RepeatRule implements TestRule {
}
}
+ /** {@inheritDoc} */
@Override
public Statement apply(Statement statement, Description description) {
Statement result = statement;