From b48886376ba377290caf0855e275aa4eb333a6f0 Mon Sep 17 00:00:00 2001 From: nathan Date: Wed, 16 Jan 2019 11:08:59 +0100 Subject: [PATCH] Fixed javadocs --- src/dorkbox/network/connection/Ping.java | 2 +- src/dorkbox/network/connection/ping/PingFuture.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dorkbox/network/connection/Ping.java b/src/dorkbox/network/connection/Ping.java index a0c030eb..dfc39cf3 100644 --- a/src/dorkbox/network/connection/Ping.java +++ b/src/dorkbox/network/connection/Ping.java @@ -18,7 +18,7 @@ package dorkbox.network.connection; public interface Ping { /** - * Wait for the ping to return, and returns the ping response time or -1 if it failed failed. + * Wait for the ping to return, and returns the ping response time in MS or -1 if it failed. */ int getResponse(); diff --git a/src/dorkbox/network/connection/ping/PingFuture.java b/src/dorkbox/network/connection/ping/PingFuture.java index ad6ef1f6..d0eb7fab 100644 --- a/src/dorkbox/network/connection/ping/PingFuture.java +++ b/src/dorkbox/network/connection/ping/PingFuture.java @@ -54,7 +54,7 @@ class PingFuture implements Ping { } /** - * Wait for the ping to return, and returns the ping response time or -1 if it failed failed. + * Wait for the ping to return, and returns the ping response time in MS or -1 if it failed. */ @Override public