From 40321c8ba97550286958a90baf83605033c74c95 Mon Sep 17 00:00:00 2001 From: Nikita Date: Tue, 1 Jul 2014 11:12:36 +0400 Subject: [PATCH] Comment fixed --- src/main/java/org/redisson/core/RExpirable.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/java/org/redisson/core/RExpirable.java b/src/main/java/org/redisson/core/RExpirable.java index 10799089c..47223ee19 100644 --- a/src/main/java/org/redisson/core/RExpirable.java +++ b/src/main/java/org/redisson/core/RExpirable.java @@ -41,9 +41,11 @@ public interface RExpirable extends RObject { boolean clearExpire(); /** - * Remaining time in seconds to live of Redisson object that has a timeout + * Remaining time to live of Redisson object that has a timeout * * @return time in seconds + * -2 if the key does not exist. + * -1 if the key exists but has no associated expire. */ long remainTimeToLive();