Remove unnecessary methods from SupportFeatureProvider.

Bug: 112587239
Test: make RunSettingsRoboTests
Change-Id: I7256fdbab1ae629b39cdd07da2fe813bd0fa455f
This commit is contained in:
Doris Ling
2018-08-21 14:12:57 -07:00
parent ac5cfffd73
commit 2ced4caff1
4 changed files with 4 additions and 129 deletions

View File

@@ -43,9 +43,9 @@ public class SupportDashboardActivity extends Activity implements Indexable {
SupportFeatureProvider supportFeatureProvider = FeatureFactory.getFactory(this)
.getSupportFeatureProvider(this);
// try to launch support v2 if we have the feature provider
// try to launch support if we have the feature provider
if (supportFeatureProvider != null) {
supportFeatureProvider.startSupportV2(this);
supportFeatureProvider.startSupport(this);
finish();
}
}