From c3f94fbddf73fdab12c403a6c3ee2cfb6d0ba334 Mon Sep 17 00:00:00 2001 From: Erwan Croze Date: Mon, 22 May 2017 11:14:02 +0200 Subject: [PATCH] Fix javadoc in ErrorInfo.java --- java/common/org/linphone/core/ErrorInfo.java | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/java/common/org/linphone/core/ErrorInfo.java b/java/common/org/linphone/core/ErrorInfo.java index 6c4e76dc6..ad95278e3 100644 --- a/java/common/org/linphone/core/ErrorInfo.java +++ b/java/common/org/linphone/core/ErrorInfo.java @@ -28,7 +28,7 @@ public interface ErrorInfo { * Get additional error information, which is provided as a Reason header in SIP response. **/ ErrorInfo getSubErrorInfo(); - + /** * Set Reason enum. */ @@ -39,12 +39,10 @@ public interface ErrorInfo { void setProtocol(String protocol); /** * Set the protocol code corresponding to the error (typically a SIP status code). - * @return the code. */ void setProtocolCode(int code); /** * Set the reason-phrase provided by the protocol (typically a SIP reason-phrase). - * @return the reason phrase. */ void setPhrase(String phrase); /** @@ -55,7 +53,7 @@ public interface ErrorInfo { * Set additional error information, which is provided as a Reason header in SIP response. **/ void setSubErrorInfo(ErrorInfo sub_ei); - + /** * Get details about the error, if provided by the protocol. For SIP it consists of the content of a Warning or Reason header. * @return details about the error.