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

Commit edc02907 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "MediaPlayer2: fix a typo"

parents c97dbc3c a6f5f7d8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -793,7 +793,7 @@ public class MediaPlayer2 implements AutoCloseable

    // throws IllegalArgumentException if dsd is null or underline PFD of dsd has been closed.
    private void checkDataSourceDesc(DataSourceDesc dsd) {
        if (dsd != null) {
        if (dsd == null) {
            throw new IllegalArgumentException("dsd is expected to be non null");
        }
        if (dsd instanceof FileDataSourceDesc) {