Skip to content

Commit 3f1d56b

Browse files
author
Dave Syer
committed
Fix javadoc error
1 parent bf3cff2 commit 3f1d56b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

spring-batch-infrastructure/src/main/java/org/springframework/batch/item/data/SpELMappingGemfireItemWriter.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,19 @@
1616
import org.springframework.util.Assert;
1717

1818
/**
19-
* A convenient {@link GemfireItemWriter} implementation that uses a {@ link SpELItemKeyMapper}
19+
* A convenient {@link GemfireItemWriter} implementation that uses a {@link SpELItemKeyMapper}
2020
*
2121
* @author David Turanski
2222
* @since 2.2
2323
*/
24-
public class SpELMappingGemfireItemWriter<K,V> extends GemfireItemWriter<K, V>{
24+
public class SpELMappingGemfireItemWriter<K, V> extends GemfireItemWriter<K, V> {
2525
/**
2626
* A constructor that accepts a SpEL expression used to derive the key
2727
* @param keyExpression
2828
*/
2929
SpELMappingGemfireItemWriter(String keyExpression) {
3030
super();
31-
Assert.hasText(keyExpression,"a valid keyExpression is required.");
31+
Assert.hasText(keyExpression, "a valid keyExpression is required.");
3232
setItemKeyMapper(new SpELItemKeyMapper<K, V>(keyExpression));
3333
}
3434
}

0 commit comments

Comments
 (0)