Author: shawkins
Date: 2010-04-08 17:30:30 -0400 (Thu, 08 Apr 2010)
New Revision: 2039
Modified:
trunk/client/src/main/java/org/teiid/netty/handler/codec/serialization/ObjectDecoderInputStream.java
Log:
TEIID-943 adding streaming from server to client using the same method as client to
server.
Modified:
trunk/client/src/main/java/org/teiid/netty/handler/codec/serialization/ObjectDecoderInputStream.java
===================================================================
---
trunk/client/src/main/java/org/teiid/netty/handler/codec/serialization/ObjectDecoderInputStream.java 2010-04-08
20:56:33 UTC (rev 2038)
+++
trunk/client/src/main/java/org/teiid/netty/handler/codec/serialization/ObjectDecoderInputStream.java 2010-04-08
21:30:30 UTC (rev 2039)
@@ -110,12 +110,6 @@
public InputStream getInputStream() throws IOException {
return new BufferedInputStream(new FileInputStream(f)) {
@Override
- public void close() throws IOException {
- super.close();
- f.delete();
- }
-
- @Override
protected void finalize() throws Throwable {
super.finalize();
f.delete();
Show replies by date