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

Commit e0104379 authored by Glenn Kasten's avatar Glenn Kasten Committed by Android (Google) Code Review
Browse files

Merge "Remove android.media.AudioFormat default constructor"

parents 387f87f5 1aa74e4b
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -13749,7 +13749,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");
    }

}