Revision 8304
Added by Matt Jones about 11 years ago
keplerAuthNameSpace.jsp | ||
---|---|---|
83 | 83 |
ObjectOutputStream oos = new ObjectOutputStream(os); |
84 | 84 |
oos.writeObject( inc ); |
85 | 85 |
oos.flush(); |
86 |
oos.close(); |
|
86 | 87 |
|
87 | 88 |
/* |
88 | 89 |
* Print out the incremented Integer as the namespace output |
Also available in: Unified diff
Reviewed code for all uses of FileInputStream, checking to see if the method should be closing the stream, and if so, closing it in the method as well as in the finally clause to ensure we don't leak file descriptors.