From 621327ea6cfe9067fc0d0fa578148081fa672fa2 Mon Sep 17 00:00:00 2001 From: dsyer Date: Thu, 16 Jul 2009 07:08:56 +0000 Subject: [PATCH] RESOLVED - issue BATCH-1322: Provide prototype lookup support in DefaultPropertyEditorRegistrar --- .../batch/support/DefaultPropertyEditorRegistrar.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/spring-batch-infrastructure/src/main/java/org/springframework/batch/support/DefaultPropertyEditorRegistrar.java b/spring-batch-infrastructure/src/main/java/org/springframework/batch/support/DefaultPropertyEditorRegistrar.java index 4deab2392..0f49148ff 100644 --- a/spring-batch-infrastructure/src/main/java/org/springframework/batch/support/DefaultPropertyEditorRegistrar.java +++ b/spring-batch-infrastructure/src/main/java/org/springframework/batch/support/DefaultPropertyEditorRegistrar.java @@ -28,7 +28,10 @@ import org.springframework.util.ClassUtils; /** * A re-usable {@link PropertyEditorRegistrar} that can be used wherever one * needs to register custom {@link PropertyEditor} instances with a - * {@link PropertyEditorRegistry} (like a bean wrapper, or a type converter). + * {@link PropertyEditorRegistry} (like a bean wrapper, or a type converter). It + * is not thread safe, but useful where one is confident that binding or + * initialisation can only be single threaded (e.g in a standalone application + * with no threads). * * @author Dave Syer *