You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by hs...@apache.org on 2015/05/10 20:36:33 UTC

flink git commit: Small update on TypeInfoParser JavaDoc to make the li elements in the same alignments

Repository: flink
Updated Branches:
  refs/heads/asf_master [created] aac2dc09d


Small update on TypeInfoParser JavaDoc to make the li elements in the same alignments


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

Branch: refs/heads/asf_master
Commit: aac2dc09d609fce66c3af376de008fb90f0ffcd2
Parents: 7e5a970
Author: Henry Saputra <hs...@apache.org>
Authored: Sun May 10 11:35:41 2015 -0700
Committer: Henry Saputra <hs...@apache.org>
Committed: Sun May 10 11:35:41 2015 -0700

----------------------------------------------------------------------
 .../apache/flink/api/java/typeutils/TypeInfoParser.java | 12 ++++--------
 1 file changed, 4 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink/blob/aac2dc09/flink-java/src/main/java/org/apache/flink/api/java/typeutils/TypeInfoParser.java
----------------------------------------------------------------------
diff --git a/flink-java/src/main/java/org/apache/flink/api/java/typeutils/TypeInfoParser.java b/flink-java/src/main/java/org/apache/flink/api/java/typeutils/TypeInfoParser.java
index 2e04aca..1e68eef 100644
--- a/flink-java/src/main/java/org/apache/flink/api/java/typeutils/TypeInfoParser.java
+++ b/flink-java/src/main/java/org/apache/flink/api/java/typeutils/TypeInfoParser.java
@@ -55,16 +55,12 @@ public class TypeInfoParser {
 	 *
 	 * <ul>
 	 * <li>Basic types such as <code>Integer</code>, <code>String</code>, etc.
-	 * <li>Basic type arrays such as <code>Integer[]</code>,
-	 * <code>String[]</code>, etc.
-	 * <li>Tuple types such as <code>Tuple1&lt;TYPE0&gt;</code>,
-	 * <code>Tuple2&lt;TYPE0, TYPE1&gt;</code>, etc.</li>
+	 * <li>Basic type arrays such as <code>Integer[]</code>, <code>String[]</code>, etc.
+	 * <li>Tuple types such as <code>Tuple1&lt;TYPE0&gt;</code>, <code>Tuple2&lt;TYPE0, TYPE1&gt;</code>, etc.</li>
 	 * <li>Pojo types such as <code>org.my.MyPojo&lt;myFieldName=TYPE0,myFieldName2=TYPE1&gt;</code>, etc.</li>
 	 * <li>Generic types such as <code>java.lang.Class</code>, etc.
-	 * <li>Custom type arrays such as <code>org.my.CustomClass[]</code>,
-	 * <code>org.my.CustomClass$StaticInnerClass[]</code>, etc.
-	 * <li>Value types such as <code>DoubleValue</code>,
-	 * <code>StringValue</code>, <code>IntegerValue</code>, etc.</li>
+	 * <li>Custom type arrays such as <code>org.my.CustomClass[]</code>, <code>org.my.CustomClass$StaticInnerClass[]</code>, etc.
+	 * <li>Value types such as <code>DoubleValue</code>, <code>StringValue</code>, <code>IntegerValue</code>, etc.</li>
 	 * <li>Tuple array types such as <code>Tuple2&lt;TYPE0,TYPE1&gt;[], etc.</code></li>
 	 * <li>Writable types such as <code>Writable&lt;org.my.CustomWritable&gt;</code></li>
 	 * <li>Enum types such as <code>Enum&lt;org.my.CustomEnum&gt;</code></li>