Skip to content

Commit a63f197

Browse files
committed
Fix JavaDocs in the TransformerFactoryUtils
1 parent b79a7cc commit a63f197

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

spring-integration-xml/src/main/java/org/springframework/integration/xml/TransformerFactoryUtils.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ public final class TransformerFactoryUtils {
4040

4141
/**
4242
* Build a new {@link TransformerFactory} using the default constructor.
43+
* @return the {@link TransformerFactory} instance
4344
*/
4445
public static TransformerFactory newInstance() {
4546
return defaultSettings(TransformerFactory.newInstance());
@@ -48,6 +49,8 @@ public static TransformerFactory newInstance() {
4849
/**
4950
* Build an {@link TransformerFactory} and prevent external entities from accessing.
5051
* @see TransformerFactory#newInstance()
52+
* @param transformerFactoryClass the class for {@link TransformerFactory} to instantiate.
53+
* @return the {@link TransformerFactory} instance
5154
*/
5255
public static TransformerFactory newInstance(Class<? extends TransformerFactory> transformerFactoryClass) {
5356
try {

0 commit comments

Comments
 (0)