summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Allen Su <allenwtsu@google.com> 2021-04-14 02:33:21 +0000
committer Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> 2021-04-14 02:33:21 +0000
commit85f4d04ef2679d35e48117d5cf8d18a6a44bd3f7 (patch)
tree678343a3d3d8c78cf97b17d389b55ac83aed97cf
parent1a4acce75322f449149df414c922b5f2492e7610 (diff)
parentbf7c109ed6b9bf0ccf0a3021cc47290166614735 (diff)
Merge "[RCS]Migrate from getEncodedMessage() to toEncodedMessage()" am: 23bbd41fde am: bf7c109ed6
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1671789 Change-Id: I02897bc33c500660aadf20a1aa198a9db10643b8
-rw-r--r--core/api/system-current.txt1
-rw-r--r--telephony/java/android/telephony/ims/SipMessage.java17
2 files changed, 0 insertions, 18 deletions
diff --git a/core/api/system-current.txt b/core/api/system-current.txt
index 5edd16a4b970..1102a0d66697 100644
--- a/core/api/system-current.txt
+++ b/core/api/system-current.txt
@@ -12004,7 +12004,6 @@ package android.telephony.ims {
method public int describeContents();
method @Nullable public String getCallIdParameter();
method @NonNull public byte[] getContent();
- method @Deprecated @NonNull public byte[] getEncodedMessage();
method @NonNull public String getHeaderSection();
method @NonNull public String getStartLine();
method @NonNull public String getViaBranchParameter();
diff --git a/telephony/java/android/telephony/ims/SipMessage.java b/telephony/java/android/telephony/ims/SipMessage.java
index d21fcab264d3..391372ac8ac1 100644
--- a/telephony/java/android/telephony/ims/SipMessage.java
+++ b/telephony/java/android/telephony/ims/SipMessage.java
@@ -203,23 +203,6 @@ public final class SipMessage implements Parcelable {
}
/**
- * @return the UTF-8 encoded SIP message.
- * @deprecated Use {@link #toEncodedMessage} instead
- */
- @Deprecated
- public @NonNull byte[] getEncodedMessage() {
- byte[] header = new StringBuilder()
- .append(mStartLine)
- .append(mHeaderSection)
- .append(CRLF)
- .toString().getBytes(UTF_8);
- byte[] sipMessage = new byte[header.length + mContent.length];
- System.arraycopy(header, 0, sipMessage, 0, header.length);
- System.arraycopy(mContent, 0, sipMessage, header.length, mContent.length);
- return sipMessage;
- }
-
- /**
* According RFC-3261 section 7, SIP is a text protocol and uses the UTF-8 charset. Its format
* consists of a start-line, one or more header fields, an empty line indicating the end of the
* header fields, and an optional message-body.