Update of /cvsroot/hibernate/Hibernate/cirrus/hibernate/ps
In directory sc8-pr-cvs1:/tmp/cvs-serv5415/hibernate/ps
Modified Files:
PreparedStatementCache.java
Log Message:
fix problem wrapping sorted collections
don't update if mutable='false'
Index: PreparedStatementCache.java
===================================================================
RCS file: /cvsroot/hibernate/Hibernate/cirrus/hibernate/ps/PreparedStatementCache.java,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** PreparedStatementCache.java 21 Oct 2002 03:45:03 -0000 1.11
--- PreparedStatementCache.java 15 Feb 2003 01:14:37 -0000 1.12
***************
*** 2,8 ****
package cirrus.hibernate.ps;
! import java.sql.*;
! import org.apache.commons.logging.*;
! import java.util.*;
import cirrus.hibernate.helpers.IdentityMap;
--- 2,18 ----
package cirrus.hibernate.ps;
! import java.sql.Connection;
! import java.sql.PreparedStatement;
! import java.sql.ResultSet;
! import java.sql.SQLException;
! import java.util.ArrayList;
! import java.util.HashMap;
! import java.util.Iterator;
! import java.util.LinkedList;
! import java.util.List;
! import java.util.Map;
!
! import org.apache.commons.logging.Log;
! import org.apache.commons.logging.LogFactory;
import cirrus.hibernate.helpers.IdentityMap;
|