From ef31af0f69760bee6644f9973e2ebd0b22200017 Mon Sep 17 00:00:00 2001 From: Michael Reiche <48999328+mikereiche@users.noreply.github.com> Date: Mon, 10 Jan 2022 10:44:48 -0800 Subject: [PATCH] Fix remaining javadoc in 5.0.x (#1292) Closes #1291. Co-authored-by: mikereiche --- .../data/couchbase/core/mapping/CouchbaseDocument.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/springframework/data/couchbase/core/mapping/CouchbaseDocument.java b/src/main/java/org/springframework/data/couchbase/core/mapping/CouchbaseDocument.java index 3df69933..ead8146e 100644 --- a/src/main/java/org/springframework/data/couchbase/core/mapping/CouchbaseDocument.java +++ b/src/main/java/org/springframework/data/couchbase/core/mapping/CouchbaseDocument.java @@ -215,7 +215,7 @@ public class CouchbaseDocument implements CouchbaseStorable { /** * Returns the expiration time of the document. - *

+ *

* If the expiration time is 0, then the document will be persisted until deleted manually ("forever"). * * @return the expiration time of the document. @@ -226,9 +226,9 @@ public class CouchbaseDocument implements CouchbaseStorable { /** * Set the expiration time of the document. - *

+ *

* If the expiration time is 0, then the document will be persisted until deleted manually ("forever"). - *

+ *

* Expiration should be expressed as seconds if <= 30 days (30 x 24 x 60 x 60 seconds), or as an expiry date (UTC, * UNIX time ie. seconds form the Epoch) if > 30 days. *