Skip to content

Commit e106213

Browse files
authored
Format code fix for SparkStreamingPipelineTranslator
1 parent 308f812 commit e106213

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

runners/spark/src/main/java/org/apache/beam/runners/spark/translation/SparkStreamingPortablePipelineTranslator.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,8 @@ private static <T> void translateFlatten(
330330
}
331331
}
332332
// Unify streams into a single stream.
333-
unifiedStreams = context.getStreamingContext().union(JavaConverters.asScalaBuffer(dStreams).toList());
333+
unifiedStreams =
334+
context.getStreamingContext().union(JavaConverters.asScalaBuffer(dStreams).toList());
334335
}
335336

336337
context.pushDataset(

0 commit comments

Comments
 (0)