[
https://issues.apache.org/jira/browse/OPENNLP-815?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Tim Schmolka updated OPENNLP-815:
---------------------------------
Attachment: vcs-diff3391880537723483708.patch
> unhandled exception
> -------------------
>
> Key: OPENNLP-815
> URL: https://issues.apache.org/jira/browse/OPENNLP-815
> Project: OpenNLP
> Issue Type: Bug
> Affects Versions: tools-1.5.3
> Reporter: songwanging
> Priority: Minor
> Attachments: vcs-diff3391880537723483708.patch
>
>
> In method run() of class
> CensusDictionaryCreatorTool(opennlp-tools\src\main\java\opennlp\tools\cmdline\namefind\CensusDictionaryCreatorTool.java)
> The catch block in the following code snippet, caught an IOException, while
> it performs no actions to handle its expected exception, which makes
> itself useless.
> To fix this bug, developers should add more code into the catch block to
> handle this exception.
> try {
> ...
> } finally {
> try {
> sampleStream.close();
> } catch(IOException e) {
> // sorry this can fail..
> }
> }
> ...
> }
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)