blob: c4962d6482d71ac1c5fe660b30aa130b7376f948 [file] [log] [blame]
package com.android.settings.bluetooth;
/**
* Impl for bluetooth feature provider
*/
public class BluetoothFeatureProviderImpl implements BluetoothFeatureProvider {
@Override
public boolean isPairingPageEnabled() {
return false;
}
@Override
public boolean isDeviceDetailPageEnabled() {
return false;
}
}