Skip to content

Commit

Permalink
Fix typo of DebuggingWordCount.java
Browse files Browse the repository at this point in the history
  • Loading branch information
keijiyoshida committed Jan 22, 2017
1 parent 09d131c commit 3541b3c
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -97,7 +97,7 @@ public FilterTextFn(String pattern) {
private final Aggregator<Long, Long> matchedWords =
createAggregator("matchedWords", Sum.ofLongs());
private final Aggregator<Long, Long> unmatchedWords =
createAggregator("umatchedWords", Sum.ofLongs());
createAggregator("unmatchedWords", Sum.ofLongs());

@ProcessElement
public void processElement(ProcessContext c) {
Expand Down

0 comments on commit 3541b3c

Please sign in to comment.