Fix line length

git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@673188 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Dick 2008-07-01 19:39:01 +00:00
parent 54d1a24320
commit bae08e93e4
1 changed files with 4 additions and 3 deletions

View File

@ -198,9 +198,10 @@ public class RegistryManagedRuntime
* RegistryManagedRuntime cannot suspend transactions. * RegistryManagedRuntime cannot suspend transactions.
* </P> * </P>
*/ */
public void doNonTransactionalWork(Runnable runnable) throws NotSupportedException { public void doNonTransactionalWork(Runnable runnable)
throw new NotSupportedException( throws NotSupportedException {
_loc.get("tsr-cannot-suspend").getMessage()); throw new NotSupportedException(_loc.get("tsr-cannot-suspend")
.getMessage());
} }
} }