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

mjsax pushed a commit to branch 1.1
in repository https://gitbox.apache.org/repos/asf/kafka.git


The following commit(s) were added to refs/heads/1.1 by this push:
     new f5f5ec1  KAFKA-7855: Kafka Streams Maven Archetype quickstart fails to 
compile out of the box (#6194)
f5f5ec1 is described below

commit f5f5ec14caafb4bb50e5e84a74c30c64c9030488
Author: Kristian Aurlien <aurl...@users.noreply.github.com>
AuthorDate: Sat Mar 16 03:51:20 2019 +0100

    KAFKA-7855: Kafka Streams Maven Archetype quickstart fails to compile out 
of the box (#6194)
    
    Reviewers: Guozhang Wang <guozh...@confluent.io>, Matthias J. Sax 
<matth...@confluent.io>
---
 .../src/main/resources/archetype-resources/src/main/java/LineSplit.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/streams/quickstart/java/src/main/resources/archetype-resources/src/main/java/LineSplit.java
 
b/streams/quickstart/java/src/main/resources/archetype-resources/src/main/java/LineSplit.java
index ec40d2a..41b024b 100644
--- 
a/streams/quickstart/java/src/main/resources/archetype-resources/src/main/java/LineSplit.java
+++ 
b/streams/quickstart/java/src/main/resources/archetype-resources/src/main/java/LineSplit.java
@@ -55,7 +55,7 @@ public class LineSplit {
 
         /* ------- use the code below for Java 8 and uncomment the above ----
 
-        builder.stream("streams-plaintext-input")
+        builder.<String, String>stream("streams-plaintext-input")
                .flatMapValues(value -> Arrays.asList(value.split("\\W+")))
                .to("streams-linesplit-output");
 

Reply via email to