Merge "Fix interfaceVersion in DhcpServerCallbacks" into qt-r1-dev

am: 9a0d576b4d

Change-Id: Ibea00c309b18939c12275d760ee35539e0b157ba
This commit is contained in:
Remi NGUYEN VAN
2019-08-14 20:44:53 -07:00
committed by android-build-merger

View File

@@ -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;
}
}