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

Commit 6f49dc16 authored by Tyler Gunn's avatar Tyler Gunn Committed by android-build-merger
Browse files

Merge "Make Connection.Listener methods package private." am: 9c3abc46 am: 48c29257

am: 8d6e633a

Change-Id: Ic37e0a62448769ffe5184a82fdd8bbd63b74b30c
parents 898cf42c 8d6e633a
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -858,7 +858,7 @@ public abstract class Connection extends Conferenceable {
    }

    /** @hide */
    public abstract static class Listener {
    abstract static class Listener {
        public void onStateChanged(Connection c, int state) {}
        public void onAddressChanged(Connection c, Uri newAddress, int presentation) {}
        public void onCallerDisplayNameChanged(
@@ -2006,7 +2006,7 @@ public abstract class Connection extends Conferenceable {
     *
     * @hide
     */
    public final Connection addConnectionListener(Listener l) {
    final Connection addConnectionListener(Listener l) {
        mListeners.add(l);
        return this;
    }
@@ -2019,7 +2019,7 @@ public abstract class Connection extends Conferenceable {
     *
     * @hide
     */
    public final Connection removeConnectionListener(Listener l) {
    final Connection removeConnectionListener(Listener l) {
        if (l != null) {
            mListeners.remove(l);
        }