am 4c0d406d: am 2df1cc43: Merge change I42a80783 into eclair

Merge commit '4c0d406d56894037df7669064e1d67b4f51cdb6d'

* commit '4c0d406d56894037df7669064e1d67b4f51cdb6d':
  Remove deprecated VpnType.getDescription().
This commit is contained in:
Hung-ying Tyan
2009-10-01 11:55:44 -07:00
committed by Android Git Automerger
2 changed files with 0 additions and 5 deletions

View File

@@ -130,7 +130,6 @@ public class VpnTest extends AndroidTestCase {
private void testVpnType(VpnType type) {
assertFalse(TextUtils.isEmpty(type.getDisplayName()));
assertNotNull(type.getDescription());
assertNotNull(type.getProfileClass());
}

View File

@@ -49,10 +49,6 @@ public enum VpnType {
return mDescriptionId;
}
public String getDescription() {
return "";
}
public Class<? extends VpnProfile> getProfileClass() {
return mClass;
}