You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zeppelin.apache.org by pd...@apache.org on 2022/12/09 06:15:56 UTC

[zeppelin] branch master updated: [Minor][ZEPPELIN-5859] Fixing the styling issue (#4534)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 767791978a [Minor][ZEPPELIN-5859] Fixing the styling issue (#4534)
767791978a is described below

commit 767791978adee27793fe6fed1372fb30a8d457fa
Author: Ankit Prakash Gupta <in...@gmail.com>
AuthorDate: Fri Dec 9 11:45:45 2022 +0530

    [Minor][ZEPPELIN-5859] Fixing the styling issue (#4534)
    
    * [ZEPPELIN-5859] Fixing the styling issue
    
    * [ZEPPELIN-5859] Fixing indentation
---
 .../src/main/java/org/apache/zeppelin/alluxio/AlluxioInterpreter.java | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/alluxio/src/main/java/org/apache/zeppelin/alluxio/AlluxioInterpreter.java b/alluxio/src/main/java/org/apache/zeppelin/alluxio/AlluxioInterpreter.java
index 6ec81464f5..866df95e2d 100644
--- a/alluxio/src/main/java/org/apache/zeppelin/alluxio/AlluxioInterpreter.java
+++ b/alluxio/src/main/java/org/apache/zeppelin/alluxio/AlluxioInterpreter.java
@@ -77,7 +77,9 @@ public class AlluxioInterpreter extends Interpreter {
   }
 
   private Stream<String> filteredProperties(String prefix) {
-    return properties.stringPropertyNames().stream().filter(propertyKey -> propertyKey.startsWith(prefix));
+    return properties.stringPropertyNames().stream().filter(
+      propertyKey -> propertyKey.startsWith(prefix)
+    );
   }
 
   @Override