Ted Yu created FLINK-6080:
-----------------------------
Summary: Unclosed ObjectOutputStream in NFA#serialize()
Key: FLINK-6080
URL:
https://issues.apache.org/jira/browse/FLINK-6080 Project: Flink
Issue Type: Bug
Reporter: Ted Yu
Priority: Minor
{code}
public void serialize(NFA<T> record, DataOutputView target) throws IOException {
ObjectOutputStream oos = new ObjectOutputStream(new DataOutputViewStream(target));
oos.writeObject(record);
oos.flush();
}
{code}
ObjectOutputStream should be closed before returning from method.
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)