Skip to content

Commit

Permalink
Fix javadoc issues.
Browse files Browse the repository at this point in the history
Signed-off-by: Carsten Lohmann <[email protected]>
  • Loading branch information
calohmn committed Apr 29, 2020
1 parent 8270545 commit f80e9db
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1131,7 +1131,7 @@ private static Message addProperties(
* address is used to determine if the message represents an event or not.
* Determining this information from the <em>to</em> property
* requires additional parsing which can be prevented by passing in the
* target address as a {@code ResoruceIdentifier} instead.
* target address as a {@code ResourceIdentifier} instead.
* @param defaults The default properties (device and tenant level) to set or {@code null}
* if no default properties are defined for the device that the message originates from.
* @param maxTtl The maximum time-to-live (in seconds) that should be used for limiting a default TTL.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ protected final S getService() {
* {@inheritDoc}
* <p>
* This implementation checks if the service instance implements {@link Lifecycle}
* and if so, invokes its {@linkplain start method Lifecycle#start()}.
* and if so, invokes its {@linkplain Lifecycle#start() start method}.
*/
@Override
protected void doStart(final Promise<Void> startPromise) {
Expand All @@ -82,7 +82,7 @@ protected void doStart(final Promise<Void> startPromise) {
* {@inheritDoc}
* <p>
* This implementation checks if the service instance implements {@link Lifecycle}
* and if so, invokes its {@linkplain stop method Lifecycle#stop()}.
* and if so, invokes its {@linkplain Lifecycle#stop() stop method}.
*/
@Override
protected void doStop(final Promise<Void> stopPromise) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ protected final S getService() {
* {@inheritDoc}
* <p>
* This implementation checks if the service instance implements {@link Lifecycle}
* and if so, invokes its {@linkplain start method Lifecycle#start()}.
* and if so, invokes its {@linkplain Lifecycle#start() start method}.
*/
@Override
protected void doStart(final Promise<Void> startPromise) {
Expand All @@ -83,7 +83,7 @@ protected void doStart(final Promise<Void> startPromise) {
* {@inheritDoc}
* <p>
* This implementation checks if the service instance implements {@link Lifecycle}
* and if so, invokes its {@linkplain stop method Lifecycle#stop()}.
* and if so, invokes its {@linkplain Lifecycle#stop() stop method}.
*/
@Override
protected void doStop(final Promise<Void> stopPromise) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

import io.opentracing.Span;
import io.opentracing.tag.Tags;
import io.vertx.core.Handler;
import io.vertx.core.http.HttpServerRequest;
import io.vertx.core.http.HttpServerResponse;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ protected ToStringHelper toStringHelper() {
}

/**
* {@link #toString()} method implemented based on {@link #toStringHelper()}.
* {@code toString} method implemented based on {@link #toStringHelper()}.
*/
@Override
public String toString() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -803,7 +803,7 @@ protected Future<?> assertDevices(final Map<String, Device> devices) {
}

/**
* Creates a device for {@link TENANT}.
* Creates a device for {@link #TENANT}.
*
* @param deviceId The device identifier.
* @param device The device data.
Expand Down

0 comments on commit f80e9db

Please sign in to comment.