Author: max.andersen(a)jboss.com
Date: 2007-09-27 12:21:54 -0400 (Thu, 27 Sep 2007)
New Revision: 3868
Modified:
trunk/hibernatetools/plugins/org.hibernate.eclipse/src/org/hibernate/console/FakeTransactionManagerLookup.java
Log:
JBIDE-799 avoid exception with respect to transaction manager lookup
Modified:
trunk/hibernatetools/plugins/org.hibernate.eclipse/src/org/hibernate/console/FakeTransactionManagerLookup.java
===================================================================
---
trunk/hibernatetools/plugins/org.hibernate.eclipse/src/org/hibernate/console/FakeTransactionManagerLookup.java 2007-09-27
15:40:55 UTC (rev 3867)
+++
trunk/hibernatetools/plugins/org.hibernate.eclipse/src/org/hibernate/console/FakeTransactionManagerLookup.java 2007-09-27
16:21:54 UTC (rev 3868)
@@ -34,7 +34,7 @@
}
public String getUserTransactionName() {
- throw new UnsupportedOperationException();
+ return null; //throw new UnsupportedOperationException();
}
}