You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by tz...@apache.org on 2020/02/25 14:24:01 UTC

[flink-statefun] branch master updated: [hotfix] Fix spotless checkstyle violation

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 85f4e32  [hotfix] Fix spotless checkstyle violation
85f4e32 is described below

commit 85f4e3206db931398009f60cfd9e0b02388b2230
Author: Tzu-Li (Gordon) Tai <tz...@apache.org>
AuthorDate: Tue Feb 25 22:23:26 2020 +0800

    [hotfix] Fix spotless checkstyle violation
---
 .../itcases/sanity/testutils/StatefulFunctionsAppContainers.java       | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/statefun-end-to-end-tests/statefun-sanity-itcase/src/test/java/org/apache/flink/statefun/itcases/sanity/testutils/StatefulFunctionsAppContainers.java b/statefun-end-to-end-tests/statefun-sanity-itcase/src/test/java/org/apache/flink/statefun/itcases/sanity/testutils/StatefulFunctionsAppContainers.java
index 6e969de..bb055b1 100644
--- a/statefun-end-to-end-tests/statefun-sanity-itcase/src/test/java/org/apache/flink/statefun/itcases/sanity/testutils/StatefulFunctionsAppContainers.java
+++ b/statefun-end-to-end-tests/statefun-sanity-itcase/src/test/java/org/apache/flink/statefun/itcases/sanity/testutils/StatefulFunctionsAppContainers.java
@@ -205,7 +205,8 @@ public final class StatefulFunctionsAppContainers extends ExternalResource {
     return yaml.toString();
   }
 
-  private static GenericContainer<?> masterContainer(ImageFromDockerfile appImage, Network network) {
+  private static GenericContainer<?> masterContainer(
+      ImageFromDockerfile appImage, Network network) {
     return new GenericContainer(appImage)
         .withNetwork(network)
         .withNetworkAliases(MASTER_HOST)