Skip to content

Commit 68a2f01

Browse files
committed
Fix javadoc (previous commit)
1 parent 38e591f commit 68a2f01

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

+2
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,13 @@
4444
* another {@link Matcher}.
4545
*
4646
* <pre class="code">
47+
* {@code
4748
* ANY_PAYLOAD = new BigDecimal("1.123");
4849
* Message<BigDecimal> message = MessageBuilder.withPayload(ANY_PAYLOAD).build();
4950
* assertThat(message, PayloadMatcher.hasPayload(is(BigDecimal.class)));
5051
* assertThat(message, PayloadMatcher.hasPayload(notNullValue()));
5152
* assertThat(message, not((PayloadMatcher.hasPayload(is(String.class))))); *
53+
* }
5254
* </pre>
5355
*
5456
*

0 commit comments

Comments
 (0)