From f0d6a78c0c0324c47f16b07d502e76e86bcf5bdc Mon Sep 17 00:00:00 2001 From: Jonas Partner Date: Mon, 29 Sep 2008 16:36:35 +0000 Subject: [PATCH] Added comment to indicate that this class is thread safe --- .../integration/xml/transformer/XsltPayloadTransformer.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/org.springframework.integration.xml/src/main/java/org/springframework/integration/xml/transformer/XsltPayloadTransformer.java b/org.springframework.integration.xml/src/main/java/org/springframework/integration/xml/transformer/XsltPayloadTransformer.java index d8fb452962..5d77834c20 100644 --- a/org.springframework.integration.xml/src/main/java/org/springframework/integration/xml/transformer/XsltPayloadTransformer.java +++ b/org.springframework.integration.xml/src/main/java/org/springframework/integration/xml/transformer/XsltPayloadTransformer.java @@ -40,7 +40,7 @@ import org.springframework.xml.transform.StringResult; import org.springframework.xml.transform.StringSource; /** - * XSLT transformer implementation which returns a transformed {@link Source}, + * Thread safe XSLT transformer implementation which returns a transformed {@link Source}, * {@link Document}, or {@link String}. If alwaysUseSourceResultFactories is * false (default) the following logic occurs * @@ -57,7 +57,7 @@ import org.springframework.xml.transform.StringSource; * {@link SourceFactory} will be used to create the {@link Source} from the * payload and the {@link Result} to pass into the transformer. An instance of * {@link ResultTransformer} can also be provided to convert the Result prior to - * returnign + * returning * * * @author Jonas Partner