ableegoldman commented on code in PR #18048:
URL: https://github.com/apache/kafka/pull/18048#discussion_r1877002471


##########
streams/src/main/java/org/apache/kafka/streams/kstream/internals/KTableKTableLeftJoin.java:
##########
@@ -38,8 +41,10 @@ class KTableKTableLeftJoin<K, V1, V2, VOut> extends 
KTableKTableAbstractJoin<K,
 
     KTableKTableLeftJoin(final KTableImpl<K, ?, V1> table1,
                          final KTableImpl<K, ?, V2> table2,
-                         final ValueJoiner<? super V1, ? super V2, ? extends 
VOut> joiner) {
-        super(table1, table2, joiner);
+                         final ValueJoiner<? super V1, ? super V2, ? extends 
VOut> joiner,
+                         final Set<StoreBuilder<?>> stores
+    ) {

Review Comment:
   nit: AK style keeps this on the same line



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to