OPENJPA-2354: Remove synchronized from pcReplaceStateManager method.

git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@1458993 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Richard G. Curtis 2013-03-20 18:35:07 +00:00
parent dd439b5ea9
commit 085ea3eb07
1 changed files with 0 additions and 1 deletions

View File

@ -1861,7 +1861,6 @@ public class PCEnhancer {
// public void pcReplaceStateManager (StateManager sm) // public void pcReplaceStateManager (StateManager sm)
BCMethod method = _pc.declareMethod(PRE + "ReplaceStateManager", BCMethod method = _pc.declareMethod(PRE + "ReplaceStateManager",
void.class, new Class[]{ SMTYPE }); void.class, new Class[]{ SMTYPE });
method.setSynchronized(true);
method.getExceptions(true).addException(SecurityException.class); method.getExceptions(true).addException(SecurityException.class);
Code code = method.getCode(true); Code code = method.getCode(true);