Skip to content

Commit 380559a

Browse files
committed
fix: Javadoc generation error.
Javadoc can't build links to Map or Object
1 parent b63e3ca commit 380559a

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

asyncapi-core/src/main/java/com/asyncapi/v2/_6_0/jackson/model/server/ServerVariablesDeserializer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import com.asyncapi.v2.jackson.MapOfReferencesOrObjectsDeserializer;
66

77
/**
8-
* Serializes {@link com.asyncapi.v2._6_0.model.server.Server#getVariables()} map.
8+
* Serializes {@link com.asyncapi.v2._6_0.model.server.Server} variables map.
99
*
1010
* @version 2.6.0
1111
* @author Pavel Bodiachevskii

asyncapi-core/src/main/java/com/asyncapi/v2/_6_0/model/channel/message/MessageExample.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
public class MessageExample extends ExtendableObject {
2222

2323
/**
24-
* The value of this field MUST validate against the {@link com.asyncapi.v2._6_0.model.channel.message.Message#getHeaders()} field.
24+
* The value of this field MUST validate against the {@link com.asyncapi.v2._6_0.model.channel.message.Message} headers field.
2525
*/
2626
@Nullable
2727
public Map<String, Object> headers;

asyncapi-core/src/main/java/com/asyncapi/v2/_6_0/model/channel/operation/OperationTrait.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@
1717
import java.util.Map;
1818

1919
/**
20-
* Describes a trait that MAY be applied to an Operation Object({@link com.asyncapi.v2._6_0.model.channel.operation.Operation}).
20+
* Describes a trait that MAY be applied to an {@link com.asyncapi.v2._6_0.model.channel.operation.Operation}.
2121
* <p>
22-
* This object MAY contain any property from the Operation Object({@link com.asyncapi.v2._6_0.model.channel.operation.Operation}), except:
22+
* This object MAY contain any property from the {@link com.asyncapi.v2._6_0.model.channel.operation.Operation}, except:
2323
* <ul>
24-
* <li>{@link com.asyncapi.v2._6_0.model.channel.operation.Operation#getMessage()}</li>
25-
* <li>{@link com.asyncapi.v2._6_0.model.channel.operation.Operation#getTraits()}</li>
24+
* <li>Message</li>
25+
* <li>Traits</li>
2626
* </ul>
2727
* <p>
28-
* If you're looking to apply traits to a message, see the Message Trait Object({@link com.asyncapi.v2._6_0.model.channel.message.MessageTrait}.
28+
* If you're looking to apply traits to a message, see the {@link com.asyncapi.v2._6_0.model.channel.message.MessageTrait}.
2929
*
3030
* @version 2.0.0
3131
* @see <a href="https://www.asyncapi.com/docs/reference/specification/v2.6.0/#operationObject">Operation</a>

0 commit comments

Comments
 (0)