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

Commit 8600bf1c authored by Robert Quattlebaum's avatar Robert Quattlebaum
Browse files

LowpanEnergyScanResult: Remove `public` designation from setChannel/setMaxRssi

This class is intended to be immutable to the users of this API.

Bug: b/63708272
Test: Compiled and ran lowpanctl (uses this class) with no problems.
Change-Id: I1fc8a51c19b637a27c1987b3b3d0db1cb844f5af
parent f59fc738
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -28,7 +28,7 @@ public class LowpanEnergyScanResult {
    private int mChannel = UNKNOWN;
    private int mMaxRssi = UNKNOWN;

    public LowpanEnergyScanResult() {}
    LowpanEnergyScanResult() {}

    public int getChannel() {
        return mChannel;
@@ -38,11 +38,11 @@ public class LowpanEnergyScanResult {
        return mMaxRssi;
    }

    public void setChannel(int x) {
    void setChannel(int x) {
        mChannel = x;
    }

    public void setMaxRssi(int x) {
    void setMaxRssi(int x) {
        mMaxRssi = x;
    }