This is an automated email from the ASF dual-hosted git repository.

nkruber pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git

commit 500c133d97ca5da0cc64da39785c4976452f56c4
Author: Nico Kruber <n...@ververica.com>
AuthorDate: Thu May 23 08:42:53 2019 +0200

    [hotfix][docs] make LineBreakElement also implement InlineElement
    
    This allows line breaks in text block elements and may be useful, for 
example,
    in starting a new line inside a list description element.
---
 .../org/apache/flink/configuration/description/LineBreakElement.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/flink-core/src/main/java/org/apache/flink/configuration/description/LineBreakElement.java
 
b/flink-core/src/main/java/org/apache/flink/configuration/description/LineBreakElement.java
index 4a3de9c..4d55b18 100644
--- 
a/flink-core/src/main/java/org/apache/flink/configuration/description/LineBreakElement.java
+++ 
b/flink-core/src/main/java/org/apache/flink/configuration/description/LineBreakElement.java
@@ -21,7 +21,7 @@ package org.apache.flink.configuration.description;
 /**
  * Represents a line break in the {@link Description}.
  */
-public class LineBreakElement implements BlockElement {
+public class LineBreakElement implements InlineElement, BlockElement {
 
        /**
         * Creates a line break in the description.

Reply via email to