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

Commit 3f7d5b64 authored by Remi NGUYEN VAN's avatar Remi NGUYEN VAN Committed by android-build-merger
Browse files

Merge "Fix interfaceVersion in DhcpServerCallbacks" into qt-r1-dev am: 9a0d576b

am: bdf173ad

Change-Id: I79f618af50d2f56ae01f142fcdaab008f288dc40
parents 2045b1af bdf173ad
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -21,13 +21,11 @@ package android.net.dhcp;
 * @hide
 */
public abstract class DhcpServerCallbacks extends IDhcpServerCallbacks.Stub {
    // TODO: add @Override here once the API is versioned

    /**
     * Get the version of the aidl interface implemented by the callbacks.
     */
    @Override
    public int getInterfaceVersion() {
        // TODO: return IDhcpServerCallbacks.VERSION;
        return 0;
        return IDhcpServerCallbacks.VERSION;
    }
}