Skip to content

Commit 0960870

Browse files
committed
Fix javadoc (previous commit)
1 parent d2dc9c5 commit 0960870

File tree

1 file changed

+2
-0
lines changed
  • spring-integration-test-support/src/main/java/org/springframework/integration/test/matcher

1 file changed

+2
-0
lines changed

spring-integration-test-support/src/main/java/org/springframework/integration/test/matcher/PayloadMatcher.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,13 @@
4343
* another {@link Matcher}.
4444
*
4545
* <pre class="code">
46+
* {@code
4647
* ANY_PAYLOAD = new BigDecimal("1.123");
4748
* Message<BigDecimal> message = MessageBuilder.withPayload(ANY_PAYLOAD).build();
4849
* assertThat(message, PayloadMatcher.hasPayload(is(BigDecimal.class)));
4950
* assertThat(message, PayloadMatcher.hasPayload(notNullValue()));
5051
* assertThat(message, not((PayloadMatcher.hasPayload(is(String.class))))); *
52+
* }
5153
* </pre>
5254
*
5355
*

0 commit comments

Comments
 (0)