Eliminate check for impossible nullness.

git-svn-id: https://samskivert.googlecode.com/svn/trunk@2715 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
samskivert
2010-02-09 20:21:55 +00:00
parent d25492df43
commit c9a12f1b3e
@@ -218,7 +218,7 @@ public class SimpleRepository extends Repository
} catch (PersistenceException pe) {
// back out our changes if something got hosed
try {
if (supportsTransactions && conn != null && !conn.isClosed()) {
if (supportsTransactions && !conn.isClosed()) {
conn.rollback();
}
} catch (SQLException rbe) {