Merge "Removed deprecated ViewStructure.setUrl() method." into oc-dev

am: 246cc5bf51

Change-Id: Ie1e1e1edc6fc0b4202379dc61c7bb2167727ba6a
This commit is contained in:
Felipe Leme
2017-05-03 23:34:29 +00:00
committed by android-build-merger
2 changed files with 0 additions and 14 deletions

View File

@@ -1736,13 +1736,6 @@ public class AssistStructure implements Parcelable {
mNode.mSanitized = !sensitive;
}
@Override
public void setUrl(String url) {
if (url == null) return;
setWebDomain(url);
}
@Override
public void setWebDomain(@Nullable String domain) {
if (domain == null) {

View File

@@ -373,13 +373,6 @@ public abstract class ViewStructure {
/** @hide */
public abstract Rect getTempRect();
/**
* @deprecated - use {@link #setWebDomain(String)} instead.
* @hide
*/
@Deprecated
public abstract void setUrl(String url);
/**
* Sets the Web domain represented by this node.
*