Make SingleEMFTetsCase.setUp() public so that it'll get invoked by junit.

git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@570278 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Patrick Linskey 2007-08-28 00:30:13 +00:00
parent 953df22c39
commit 99730c3a5a
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ public abstract class SingleEMFTestCase
* set-up happens even if <code>setUp()</code> is not called from the * set-up happens even if <code>setUp()</code> is not called from the
* subclass. * subclass.
*/ */
protected void setUp() throws Exception { public void setUp() throws Exception {
setUp(new Object[0]); setUp(new Object[0]);
} }