MINOR: Streams doc example should not close store (#4667)

Author: Matthias J. Sax <matthias@confluent.io>

Reviewers: Bill Bejeck <bill@confluent.io>, Guozhang Wang <guozhang@confluent.io>
This commit is contained in:
Matthias J. Sax 2018-03-13 00:42:40 -07:00 committed by GitHub
parent 2bf06890b9
commit 0c00aa0983
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -140,8 +140,8 @@
<span class="nd">@Override</span>
<span class="kd">public</span> <span class="kt">void</span> <span class="nf">close</span><span class="o">()</span> <span class="o">{</span>
<span class="c1">// close the key-value store</span>
<span class="n">kvStore</span><span class="o">.</span><span class="na">close</span><span class="o">();</span>
<span class="c1">// close any resources managed by this processor</span>
<span class="c1">// Note: Do not close any StateStores as these are managed by the library</span>
<span class="o">}</span>
<span class="o">}</span>