You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@kylin.apache.org by "Ted Yu (JIRA)" <ji...@apache.org> on 2017/11/02 18:50:00 UTC

[jira] [Created] (KYLIN-2989) Close of BufferedWriter should be placed in finally block in SCCreator

Ted Yu created KYLIN-2989:
-----------------------------

             Summary: Close of BufferedWriter should be placed in finally block in SCCreator
                 Key: KYLIN-2989
                 URL: https://issues.apache.org/jira/browse/KYLIN-2989
             Project: Kylin
          Issue Type: Bug
            Reporter: Ted Yu
            Priority: Minor


Here is related code in SCCreator#saveToFile:
{code}
        BufferedWriter bufferedWriter = new BufferedWriter(new FileWriter(fileName));
        bufferedWriter.append(contents);
        bufferedWriter.close();
{code}
The close call should be in finally block.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)