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

Commit 1aa74e4b authored by Glenn Kasten's avatar Glenn Kasten
Browse files

Remove android.media.AudioFormat default constructor

Change-Id: I2fe65ee7a8087151b44da3b84af357ea8bee80c4
parent 6b7b3484
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -13778,7 +13778,6 @@ package android.media {
  }
  public class AudioFormat {
    ctor public AudioFormat();
    field public static final deprecated int CHANNEL_CONFIGURATION_DEFAULT = 1; // 0x1
    field public static final deprecated int CHANNEL_CONFIGURATION_INVALID = 0; // 0x0
    field public static final deprecated int CHANNEL_CONFIGURATION_MONO = 2; // 0x2
+8 −0
Original line number Diff line number Diff line
package android.media {

  public class AudioFormat {
    ctor public AudioFormat();
  }

}
+6 −0
Original line number Diff line number Diff line
@@ -156,4 +156,10 @@ public class AudioFormat {
        }
    }

    /** @removed */
    public AudioFormat()
    {
        throw new UnsupportedOperationException("There is no valid usage of this constructor");
    }

}