Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 31c7ac10 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Fix flaky test error"

parents 7af4e5a7 41eab2c2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -221,7 +221,7 @@ public final class BluetoothDevicePreference extends GearPreference implements
                return mCachedDevice
                        .compareTo(((BluetoothDevicePreference) another).mCachedDevice);
            case SortType.TYPE_FIFO:
                return (int)(mCurrentTime - ((BluetoothDevicePreference) another).mCurrentTime);
                return mCurrentTime > ((BluetoothDevicePreference) another).mCurrentTime ? 1 : -1;
            default:
                return super.compareTo(another);
        }