Remove deprecated VpnType.getDescription().

This commit is contained in:
Hung-ying Tyan
2009-09-30 18:00:36 +08:00
parent f2bd901738
commit 865a1bbf36
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;
}