Skip to content
This repository was archived by the owner on May 25, 2023. It is now read-only.

Commit ee51640

Browse files
committed
Removed extra lines and fixed conflicts
2 parents 86ab146 + 5a6d2e5 commit ee51640

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/scala/com/lightbend/kafka/scala/streams/KTableS.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class KTableS[K, V](val inner: KTable[K, V]) {
2121

2222
def filter(predicate: (K, V) => Boolean,
2323
materialized: Materialized[K, V, KeyValueStore[Bytes, Array[Byte]]]): KTableS[K, V] = {
24-
inner.filter(predicate(_, _), materialized)
24+
inner.filter(predicate, materialized)
2525
}
2626

2727
def filterNot(predicate: (K, V) => Boolean): KTableS[K, V] = {

0 commit comments

Comments
 (0)