mirror of https://github.com/apache/openjpa.git
Formatting.
git-svn-id: https://svn.apache.org/repos/asf/incubator/openjpa/trunk@428929 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f7f225f96d
commit
d293c449b1
|
@ -2615,12 +2615,12 @@ public class PCEnhancer {
|
|||
public AuxiliaryEnhancer[] getAuxiliaryEnhancers() {
|
||||
if (_auxEnhancers == null) {
|
||||
try {
|
||||
Class[] classes = Services
|
||||
.getImplementorClasses(AuxiliaryEnhancer.class);
|
||||
_auxEnhancers = new AuxiliaryEnhancer[classes.length];
|
||||
for (int i = 0; i < _auxEnhancers.length; i++)
|
||||
_auxEnhancers[i] = (AuxiliaryEnhancer) classes[i]
|
||||
.newInstance();
|
||||
Class[] classes = Services.getImplementorClasses
|
||||
(AuxiliaryEnhancer.class);
|
||||
_auxEnhancers = new AuxiliaryEnhancer[classes.length];
|
||||
for (int i = 0; i < _auxEnhancers.length; i++)
|
||||
_auxEnhancers[i] = (AuxiliaryEnhancer) classes[i].
|
||||
newInstance();
|
||||
} catch (Throwable t) {
|
||||
throw new GeneralException(t);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue