1 package com.android.settings.bluetooth; 2 3 /** 4 * Impl for bluetooth feature provider 5 */ 6 public class BluetoothFeatureProviderImpl implements BluetoothFeatureProvider { 7 8 @Override isPairingPageEnabled()9 public boolean isPairingPageEnabled() { 10 return false; 11 } 12 13 @Override isDeviceDetailPageEnabled()14 public boolean isDeviceDetailPageEnabled() { 15 return false; 16 } 17 }