Remove API that snuck into MockPackageManager

We didn't release the get/setPackageObbPath API, but it snuck into
MockPackageManager. However, it is not usable as a developer anyway.
Removing it so it doesn't stay in the API forever.

Change-Id: Ia569754691dc3a9f2672c1f25e4e08d780db6028
This commit is contained in:
Kenny Root
2011-01-17 12:40:57 -08:00
parent 34d2b41e48
commit 524133cc79
4 changed files with 0 additions and 49 deletions

View File

@@ -157967,21 +157967,6 @@
<parameter name="flags" type="int">
</parameter>
</method>
<method name="setPackageObbPath"
return="void"
abstract="false"
native="false"
synchronized="false"
static="false"
final="false"
deprecated="not deprecated"
visibility="public"
>
<parameter name="packageName" type="java.lang.String">
</parameter>
<parameter name="path" type="java.lang.String">
</parameter>
</method>
</class>
<class name="MockResources"
extends="android.content.res.Resources"

View File

@@ -157967,21 +157967,6 @@
<parameter name="flags" type="int">
</parameter>
</method>
<method name="setPackageObbPath"
return="void"
abstract="false"
native="false"
synchronized="false"
static="false"
final="false"
deprecated="not deprecated"
visibility="public"
>
<parameter name="packageName" type="java.lang.String">
</parameter>
<parameter name="path" type="java.lang.String">
</parameter>
</method>
</class>
<class name="MockResources"
extends="android.content.res.Resources"

View File

@@ -160165,21 +160165,6 @@
<parameter name="flags" type="int">
</parameter>
</method>
<method name="setPackageObbPath"
return="void"
abstract="false"
native="false"
synchronized="false"
static="false"
final="false"
deprecated="not deprecated"
visibility="public"
>
<parameter name="packageName" type="java.lang.String">
</parameter>
<parameter name="path" type="java.lang.String">
</parameter>
</method>
</class>
<class name="MockResources"
extends="android.content.res.Resources"

View File

@@ -489,8 +489,4 @@ public class MockPackageManager extends PackageManager {
public boolean isSafeMode() {
throw new UnsupportedOperationException();
}
public void setPackageObbPath(String packageName, String path) {
throw new UnsupportedOperationException();
}
}