You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bigtop.apache.org by co...@apache.org on 2017/08/04 16:59:26 UTC

bigtop git commit: BIGTOP-2863: Make doc format compatible with JDK-8

Repository: bigtop
Updated Branches:
  refs/heads/master 7747ffd75 -> 5ff983d46


BIGTOP-2863: Make doc format compatible with JDK-8

Closes #271

Signed-off-by: Konstantin Boudnik <ko...@epam.com>


Project: http://git-wip-us.apache.org/repos/asf/bigtop/repo
Commit: http://git-wip-us.apache.org/repos/asf/bigtop/commit/5ff983d4
Tree: http://git-wip-us.apache.org/repos/asf/bigtop/tree/5ff983d4
Diff: http://git-wip-us.apache.org/repos/asf/bigtop/diff/5ff983d4

Branch: refs/heads/master
Commit: 5ff983d466523a9264da55c0955b514a25013e5e
Parents: 7747ffd
Author: Jun He <ju...@arm.com>
Authored: Thu Aug 3 02:02:46 2017 +0000
Committer: Konstantin Boudnik <ko...@epam.com>
Committed: Fri Aug 4 09:59:06 2017 -0700

----------------------------------------------------------------------
 .../groovy/org/apache/bigtop/itest/junit/Ordered.java   |  2 +-
 .../apache/bigtop/itest/junit/OrderedParameterized.java |  6 +++---
 .../bigtop/itest/hbase/system/TestRegionMover.java      | 12 ++++++------
 3 files changed, 10 insertions(+), 10 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/bigtop/blob/5ff983d4/bigtop-test-framework/src/main/groovy/org/apache/bigtop/itest/junit/Ordered.java
----------------------------------------------------------------------
diff --git a/bigtop-test-framework/src/main/groovy/org/apache/bigtop/itest/junit/Ordered.java b/bigtop-test-framework/src/main/groovy/org/apache/bigtop/itest/junit/Ordered.java
index b456f3f..a9e80b3 100644
--- a/bigtop-test-framework/src/main/groovy/org/apache/bigtop/itest/junit/Ordered.java
+++ b/bigtop-test-framework/src/main/groovy/org/apache/bigtop/itest/junit/Ordered.java
@@ -36,7 +36,7 @@ import java.util.List;
  * annotation to the desired testcases (default run stage
  * is 0). Later on run stages are executed according to the order of their levels
  * and testcases within the same run stage have no guaranteed order of execution.
- * <p/>
+ * <p>
  * Here's how to use it:
  * <pre>
  * public class Example {

http://git-wip-us.apache.org/repos/asf/bigtop/blob/5ff983d4/bigtop-test-framework/src/main/groovy/org/apache/bigtop/itest/junit/OrderedParameterized.java
----------------------------------------------------------------------
diff --git a/bigtop-test-framework/src/main/groovy/org/apache/bigtop/itest/junit/OrderedParameterized.java b/bigtop-test-framework/src/main/groovy/org/apache/bigtop/itest/junit/OrderedParameterized.java
index 8df776f..dd6ba6a 100644
--- a/bigtop-test-framework/src/main/groovy/org/apache/bigtop/itest/junit/OrderedParameterized.java
+++ b/bigtop-test-framework/src/main/groovy/org/apache/bigtop/itest/junit/OrderedParameterized.java
@@ -44,7 +44,7 @@ import java.util.*;
  * and testcases within the same run stage have no guaranteed order of execution.
  * 2. it lets give names to the parameterized testcases via making the factory method
  * &#064;Parameters return a Map (mapping names to testcases) instead of a List.
- * <p/>
+ * <p>
  * Here's how to use it:
  * <pre>
  * public class Example {
@@ -64,8 +64,8 @@ import java.util.*;
  *    }
  *
  *    &#064;Parameters
- *    public static Map<String, Object[]> generateTests() {
- *      HashMap<String, Object[]> res = new HashMap();
+ *    public static Map&lt;String, Object[]&gt; generateTests() {
+ *      HashMap&lt;String, Object[]&gt; res = new HashMap();
  *      res.put("test name", new Object[] {1, 2});
  * return res;
  *    }

http://git-wip-us.apache.org/repos/asf/bigtop/blob/5ff983d4/bigtop-tests/test-artifacts/hbase/src/main/groovy/org/apache/bigtop/itest/hbase/system/TestRegionMover.java
----------------------------------------------------------------------
diff --git a/bigtop-tests/test-artifacts/hbase/src/main/groovy/org/apache/bigtop/itest/hbase/system/TestRegionMover.java b/bigtop-tests/test-artifacts/hbase/src/main/groovy/org/apache/bigtop/itest/hbase/system/TestRegionMover.java
index c8a7617..6d021d7 100644
--- a/bigtop-tests/test-artifacts/hbase/src/main/groovy/org/apache/bigtop/itest/hbase/system/TestRegionMover.java
+++ b/bigtop-tests/test-artifacts/hbase/src/main/groovy/org/apache/bigtop/itest/hbase/system/TestRegionMover.java
@@ -33,14 +33,14 @@ import org.apache.bigtop.itest.shell.Shell;
  * This program unloads and reloads region servers and checks that
  * regions do not get stuck in transition for too long. The region
  * servers are specified by hostname.
- * <p/>
+ * <p>
  * Required arguments:
- * -Dregionservers=<regionserver1>,<regionserver2>,...
- * <p/>
+ * -Dregionservers=&lt;regionserver1&gt;,&lt;regionserver2&gt;,...
+ * <p>
  * Optional arguments:
- * -Dload.iterations=<number of times to unload and load the region servers>
- * -Dtimeout.intervals=<number of times to wait for no regions in transition>
- * -Dtimeout.ms=<milliseconds to wait before checking for regions in transition>
+ * -Dload.iterations=&lt;number of times to unload and load the region servers&gt;
+ * -Dtimeout.intervals=&lt;number of times to wait for no regions in transition&gt;
+ * -Dtimeout.ms=&lt;milliseconds to wait before checking for regions in transition&gt;
  */
 public class TestRegionMover {
   private static Shell sh = new Shell("/bin/bash -s");