Merge "Fix interfaceVersion in DhcpServerCallbacks"

This commit is contained in:
Treehugger Robot
2019-08-08 12:41:51 +00:00
committed by Gerrit Code Review

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