From b0730b2fe80c6f9fdb36d2ad3ce004a03443a01d Mon Sep 17 00:00:00 2001 From: Thomas Segismont Date: Tue, 7 Jan 2020 10:07:31 +0100 Subject: [PATCH] Update Javadoc Signed-off-by: Thomas Segismont --- src/main/java/io/vertx/core/impl/ContextInternal.java | 4 ++-- src/main/java/io/vertx/core/impl/VertxInternal.java | 2 -- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/src/main/java/io/vertx/core/impl/ContextInternal.java b/src/main/java/io/vertx/core/impl/ContextInternal.java index 6827965f1..cf238b65f 100644 --- a/src/main/java/io/vertx/core/impl/ContextInternal.java +++ b/src/main/java/io/vertx/core/impl/ContextInternal.java @@ -251,12 +251,12 @@ public interface ContextInternal extends Context, Executor { ContextInternal duplicate(); /** - * Like {@link Vertx#setPeriodic(long, Handler)} except the periodic timer will fire on this comtext. + * Like {@link Vertx#setPeriodic(long, Handler)} except the periodic timer will fire on this context. */ long setPeriodic(long delay, Handler handler); /** - * Like {@link Vertx#setTimer(long, Handler)} except the timer will fire on this comtext. + * Like {@link Vertx#setTimer(long, Handler)} except the timer will fire on this context. */ long setTimer(long delay, Handler handler); diff --git a/src/main/java/io/vertx/core/impl/VertxInternal.java b/src/main/java/io/vertx/core/impl/VertxInternal.java index fd7040fdf..471c9ee83 100644 --- a/src/main/java/io/vertx/core/impl/VertxInternal.java +++ b/src/main/java/io/vertx/core/impl/VertxInternal.java @@ -67,8 +67,6 @@ public interface VertxInternal extends Vertx { Transport transport(); - long scheduleTimeout(ContextInternal context, Handler handler, long delay, boolean periodic); - /** * Get the current context * @return the context