You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by kl...@apache.org on 2016/02/05 22:09:56 UTC

incubator-geode git commit: GEODE-922: Fix javadoc warnings in RetryRule

Repository: incubator-geode
Updated Branches:
  refs/heads/develop c4591fa1c -> a8263dd93


GEODE-922: Fix javadoc warnings in RetryRule


Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/a8263dd9
Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/a8263dd9
Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/a8263dd9

Branch: refs/heads/develop
Commit: a8263dd9311cce37b72ac18b37de6a04e549eaac
Parents: c4591fa
Author: Kirk Lund <kl...@pivotal.io>
Authored: Fri Feb 5 13:08:15 2016 -0800
Committer: Kirk Lund <kl...@pivotal.io>
Committed: Fri Feb 5 13:09:30 2016 -0800

----------------------------------------------------------------------
 .../gemstone/gemfire/test/junit/rules/RetryRule.java    | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/a8263dd9/gemfire-junit/src/main/java/com/gemstone/gemfire/test/junit/rules/RetryRule.java
----------------------------------------------------------------------
diff --git a/gemfire-junit/src/main/java/com/gemstone/gemfire/test/junit/rules/RetryRule.java b/gemfire-junit/src/main/java/com/gemstone/gemfire/test/junit/rules/RetryRule.java
index 4a26d5e..c885aec 100755
--- a/gemfire-junit/src/main/java/com/gemstone/gemfire/test/junit/rules/RetryRule.java
+++ b/gemfire-junit/src/main/java/com/gemstone/gemfire/test/junit/rules/RetryRule.java
@@ -30,10 +30,10 @@ import com.gemstone.gemfire.test.junit.Retry;
  * RetryRule can be used globally for all tests in a test case by specifying a 
  * retryCount when instantiating it:
  * <pre>
- * @Rule
+ * {@literal @}Rule
  * public final RetryRule retryRule = new RetryRule(3);
  * 
- * @Test
+ * {@literal @}Test
  * public void shouldBeRetriedUntilPasses() {
  *   ...
  * }
@@ -42,13 +42,13 @@ import com.gemstone.gemfire.test.junit.Retry;
  * The above will result in 3 retries for every test in the test case.
  * </p> 
  * RetryRule can be used locally for specific tests by annotating the test 
- * method with @Rule and specifying a retryCount for that test:
+ * method with {@literal @}Rule and specifying a retryCount for that test:
  * <pre>
- * @Rule
+ * {@literal @}Rule
  * public final RetryRule retryRule = new RetryRule();
  * 
- * @Test
- * @Retry(3)
+ * {@literal @}Test
+ * {@literal @}Retry(3)
  * public void shouldBeRetriedUntilPasses() {
  *   ...
  * }