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

Commit 1c19f807 authored by hieudz's avatar hieudz
Browse files

Fix BluetoothOppBatchTest typo

Bug: 244534014
Tag: #refactor
Test: atest android.bluetooth.opp.BluetoothOppBatchTest
Change-Id: I80b742bb221fbc0aced1064a8ad6c4b0b74664d4
parent f2615621
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -180,7 +180,7 @@ public class BluetoothOppBatch {
     */

    /** register a listener for the batch change */
    public void registerListern(BluetoothOppBatchListener listener) {
    public void registerListener(BluetoothOppBatchListener listener) {
        mListener = listener;
    }

+1 −1
Original line number Diff line number Diff line
@@ -183,7 +183,7 @@ public class BluetoothOppTransfer implements BluetoothOppBatch.BluetoothOppBatch
        mBatch = batch;
        mSession = session;

        mBatch.registerListern(this);
        mBatch.registerListener(this);
        mAdapter = BluetoothAdapter.getDefaultAdapter();

    }