Formatting.

git-svn-id: https://svn.apache.org/repos/asf/incubator/openjpa/trunk@428929 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
A. Abram White 2006-08-05 00:07:12 +00:00
parent f7f225f96d
commit d293c449b1
1 changed files with 6 additions and 6 deletions

View File

@ -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);
}