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

Commit 605444f3 authored by Daniel Bright's avatar Daniel Bright
Browse files

Change createFullCapabilitySet to getFullCapabilitySet

Bug: 163168917
Test: m
Change-Id: I7dc36ebd4779104549262fca27096eda4e9616eb
parent 45ce096b
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);
    }