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

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

Merge "Change createFullCapabilitySet to getFullCapabilitySet" into sc-dev

parents 7b57c45d 605444f3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -558,7 +558,7 @@ public class RadioConfig extends Handler {
                AsyncResult.forMessage(result,
                        /* Send response such that all capabilities are supported (depending on
                           the hal version of course.) */
                        mRadioConfigResponse.createFullCapabilitySet(),
                        mRadioConfigResponse.getFullCapabilitySet(),
                        CommandException.fromRilErrno(REQUEST_NOT_SUPPORTED));
                result.sendToTarget();
            } else {
+1 −1
Original line number Diff line number Diff line
@@ -277,7 +277,7 @@ public class RadioConfigResponse extends IRadioConfigResponse.Stub {
     * @return all capabilities
     */
    @RadioInterfaceCapability
    public Set<String> createFullCapabilitySet() {
    public Set<String> getFullCapabilitySet() {
        return getCaps(mRadioHalVersion, false);
    }