TESB-18908:Memory-Leak in TalendDataSource implementation (#920)

This commit is contained in:
SunChaoqun
2017-03-28 15:07:52 +08:00
committed by Pierre Teyssier
parent 60731c20e9
commit 4da3e6ea82

View File

@@ -38,4 +38,19 @@ public class TalendDataSource {
public javax.sql.DataSource getRawDataSource() {
return ds;
}
/**
* @Deprecated
*
* This method will be removed in future release
*
* close all the connections which is created by the data source inside
*
* @throws SQLException
*/
public void close() throws SQLException {
}
}