1. 02 Aug, 2021 3 commits
  2. 29 Jul, 2021 3 commits
  3. 28 Jul, 2021 2 commits
    • Fix parameter names on overridden methods · 9c27cfcd
      The dokka javadoc generation tool complains when parameter names don't match between a method and its override. This change updates occurrences where there is currently a mismatch.
      
      Notable renamings that might be controversial:
      - `onPlaybackStateChanged(int state)` to `onPlaybackStateChanged(int playbackState)` affected a lot of lines but seems more consistent with other '-Changed' methods.
      - `handleMessage(int messageType, Object payload)` to `handleMessage(int messageType, Object message)`
      - `ExtractorInput` and `DataSource` inherit `DataReader` which had `read(byte[] target, ...`, while data sources normally called the first parameter `buffer`. I have standardized these all to use `buffer` even though it looks out of place in the `ExtractorInput` interface (which has more `read` methods with `target`).
      
      PiperOrigin-RevId: 387290360
      andrewlewis committed
    • Throw IllegalStateException from Util.gzip() instead of AssertionError · 41fe5aa1
      The documentation on ByteArrayOutputStream and GZIPOutputStream isn't
      completely clear that an IOException will *never* happen, so
      AssertionError seems a bit strong - but it seems very unlikely, so we
      just use IllegalStateException instead.
      
      #minor-release
      
      PiperOrigin-RevId: 387169297
      ibaker committed
  4. 27 Jul, 2021 17 commits
  5. 23 Jul, 2021 8 commits
  6. 22 Jul, 2021 6 commits
  7. 21 Jul, 2021 1 commit