You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by se...@apache.org on 2017/04/07 10:32:28 UTC

[2/2] cxf git commit: [CXF-7318] Minor updates

[CXF-7318] Minor updates


Project: http://git-wip-us.apache.org/repos/asf/cxf/repo
Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/58aa275b
Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/58aa275b
Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/58aa275b

Branch: refs/heads/3.0.x-fixes
Commit: 58aa275bcbb2fa0a673ee0d052888d8034fe4557
Parents: deebcc2
Author: Sergey Beryozkin <sb...@gmail.com>
Authored: Fri Apr 7 11:28:40 2017 +0100
Committer: Sergey Beryozkin <sb...@gmail.com>
Committed: Fri Apr 7 11:32:15 2017 +0100

----------------------------------------------------------------------
 .../main/java/org/apache/cxf/continuations/Continuation.java | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cxf/blob/58aa275b/core/src/main/java/org/apache/cxf/continuations/Continuation.java
----------------------------------------------------------------------
diff --git a/core/src/main/java/org/apache/cxf/continuations/Continuation.java b/core/src/main/java/org/apache/cxf/continuations/Continuation.java
index a7fc9f9..08955d1 100644
--- a/core/src/main/java/org/apache/cxf/continuations/Continuation.java
+++ b/core/src/main/java/org/apache/cxf/continuations/Continuation.java
@@ -30,7 +30,7 @@ public interface Continuation {
      * called
      *
      * @param timeout the suspend timeout, timeout of 0 will suspend the request indefinitely.
-     * @return true if if suspend was successful.
+     * @return true if suspend was successful.
      */
     boolean suspend(long timeout);
     
@@ -46,19 +46,19 @@ public interface Continuation {
     
     /** 
      * Is this a newly created Continuation.
-     * @return True if the continuation has just been created and has not yet suspended the request.
+     * @return true if the continuation has just been created and has not yet suspended the request.
      */
     boolean isNew();
     
     /** 
      * Get the pending status
-     * @return True if the continuation has been suspended.
+     * @return true if the continuation has been suspended.
      */
     boolean isPending();
     
     /** 
      * Get the resumed status
-     * @return True if the continuation is has been resumed.
+     * @return true if the continuation is has been resumed.
      */
     boolean isResumed();