From e70d2ce14c04f59a730b0fb2e3839a56c9ba75c7 Mon Sep 17 00:00:00 2001 From: Juergen Hoeller Date: Wed, 20 May 2009 00:31:00 +0000 Subject: [PATCH] polishing --- .../jpa/support/PersistenceAnnotationBeanPostProcessor.java | 3 +-- .../web/context/support/XmlWebApplicationContext.java | 6 +++--- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/org.springframework.orm/src/main/java/org/springframework/orm/jpa/support/PersistenceAnnotationBeanPostProcessor.java b/org.springframework.orm/src/main/java/org/springframework/orm/jpa/support/PersistenceAnnotationBeanPostProcessor.java index e443f42aca..862c5e1b5a 100644 --- a/org.springframework.orm/src/main/java/org/springframework/orm/jpa/support/PersistenceAnnotationBeanPostProcessor.java +++ b/org.springframework.orm/src/main/java/org/springframework/orm/jpa/support/PersistenceAnnotationBeanPostProcessor.java @@ -543,8 +543,7 @@ public class PersistenceAnnotationBeanPostProcessor extends JndiLocatorSupport PersistenceProperty[] pps = pc.properties(); if (!ObjectUtils.isEmpty(pps)) { properties = new Properties(); - for (int i = 0; i < pps.length; i++) { - PersistenceProperty pp = pps[i]; + for (PersistenceProperty pp : pps) { properties.setProperty(pp.name(), pp.value()); } } diff --git a/org.springframework.web/src/main/java/org/springframework/web/context/support/XmlWebApplicationContext.java b/org.springframework.web/src/main/java/org/springframework/web/context/support/XmlWebApplicationContext.java index 09e851c306..e09995db67 100644 --- a/org.springframework.web/src/main/java/org/springframework/web/context/support/XmlWebApplicationContext.java +++ b/org.springframework.web/src/main/java/org/springframework/web/context/support/XmlWebApplicationContext.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2007 the original author or authors. + * Copyright 2002-2009 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -121,8 +121,8 @@ public class XmlWebApplicationContext extends AbstractRefreshableWebApplicationC protected void loadBeanDefinitions(XmlBeanDefinitionReader reader) throws BeansException, IOException { String[] configLocations = getConfigLocations(); if (configLocations != null) { - for (int i = 0; i < configLocations.length; i++) { - reader.loadBeanDefinitions(configLocations[i]); + for (String configLocation : configLocations) { + reader.loadBeanDefinitions(configLocation); } } }