Merge "Don't override the hash code for the channel."

This commit is contained in:
Jaikumar Ganesh
2011-09-12 09:45:20 -07:00
committed by Android (Google) Code Review

View File

@@ -77,16 +77,6 @@ final class BluetoothHealthProfileHandler {
mConfig = config;
mState = BluetoothHealth.STATE_CHANNEL_DISCONNECTED;
}
@Override
public int hashCode() {
int result = 17;
result = 31 * result + (mChannelPath == null ? 0 : mChannelPath.hashCode());
result = 31 * result + mDevice.hashCode();
result = 31 * result + mConfig.hashCode();
result = 31 * result + mChannelType;
return result;
}
}
private final Handler mHandler = new Handler() {