Fix and improve Javadoc in spring-jms

See gh-28800
This commit is contained in:
Marc Wrobel
2022-07-12 15:53:53 +02:00
committed by Sam Brannen
parent 82ca27e46f
commit e76fbcb290
13 changed files with 22 additions and 22 deletions

View File

@@ -113,9 +113,9 @@ abstract class AbstractJmsAnnotationDrivenTests {
}
/**
* Test for {@link CustomBean} and an manually endpoint registered
* Test for {@link CustomBean} and an endpoint manually registered
* with "myCustomEndpointId". The custom endpoint does not provide
* any factory so it's registered with the default one
* any factory, so it's registered with the default one
*/
protected void testCustomConfiguration(ApplicationContext context) {
JmsListenerContainerTestFactory defaultFactory =

View File

@@ -270,7 +270,7 @@ class JmsTemplateTests {
/**
* Test sending to a destination using the method
* send(String d, MessageCreator messageCreator)
* {@code send(String d, MessageCreator messageCreator)}
*/
@Test
void testSendDestinationName() throws Exception {
@@ -279,7 +279,7 @@ class JmsTemplateTests {
/**
* Test sending to a destination using the method
* send(Destination d, MessageCreator messageCreator) using QOS parameters.
* {@code send(Destination d, MessageCreator messageCreator)} using QOS parameters.
*/
@Test
void testSendDestinationWithQOS() throws Exception {
@@ -288,7 +288,7 @@ class JmsTemplateTests {
/**
* Test sending to a destination using the method
* send(String d, MessageCreator messageCreator) using QOS parameters.
* {@code send(String d, MessageCreator messageCreator)} using QOS parameters.
*/
@Test
void testSendDestinationNameWithQOS() throws Exception {