Commit 3a2e0d37 by Googler Committed by Marc Baechinger

Fix 4 ErrorProneStyle findings:

* Non-standard parameter comment; prefer `/* paramName= */ arg`
  (see http://go/bugpattern/ParameterComment) (2 times)
* This catch block catches an exception and re-throws another, but swallows the caught exception rather than setting it as a cause. This can make debugging harder.
  (see http://go/bugpattern/UnusedException)
* This comment contains Javadoc or HTML tags, but isn't started with a double asterisk (/**); is it meant to be Javadoc?
  (see http://go/bugpattern/AlmostJavadoc)

This CL looks good? Just LGTM and Approve it!
This CL doesn’t look good? This is what you can do:
* Revert this CL, by replying "REVERT: <provide reason>"
* File a bug under go/error-prone-bug for category ErrorProneStyle if there's an issue with the CL content.
* File a bug under go/rosie-bug if there's an issue with how the CL was managed.
* Revert this CL and not get a CL that cleans up these paths in the future by
replying "BLOCKLIST: <provide reason>". This is not reversible! We recommend to
opt out the respective paths in your CL Robot configuration instead:
go/clrobot-opt-out.

This CL was generated by CL Robot - a tool that cleans up code findings
(go/clrobot). The affected code paths have been enabled for CL Robot in //depot/google3/java/com/google/android/libraries/media/METADATA which is reachable following include_presubmits from //depot/google3/third_party/java_src/android_libs/media/METADATA.
Anything wrong with the signup? File a bug at go/clrobot-bug.

#codehealth

Tested:
    Local presubmit tests passed.
PiperOrigin-RevId: 472255768
parent 573ad66f
...@@ -1261,7 +1261,7 @@ import org.checkerframework.checker.nullness.qual.NonNull; ...@@ -1261,7 +1261,7 @@ import org.checkerframework.checker.nullness.qual.NonNull;
/* ignored */ PLAY_WHEN_READY_CHANGE_REASON_USER_REQUEST, /* ignored */ PLAY_WHEN_READY_CHANGE_REASON_USER_REQUEST,
/* positionDiscontinuity= */ currentItemRemoved, /* positionDiscontinuity= */ currentItemRemoved,
DISCONTINUITY_REASON_REMOVE, DISCONTINUITY_REASON_REMOVE,
/* mediaItemTransition*/ playerInfo.sessionPositionInfo.positionInfo.mediaItemIndex /* mediaItemTransition= */ playerInfo.sessionPositionInfo.positionInfo.mediaItemIndex
>= fromIndex >= fromIndex
&& playerInfo.sessionPositionInfo.positionInfo.mediaItemIndex < clippedToIndex, && playerInfo.sessionPositionInfo.positionInfo.mediaItemIndex < clippedToIndex,
MEDIA_ITEM_TRANSITION_REASON_PLAYLIST_CHANGED); MEDIA_ITEM_TRANSITION_REASON_PLAYLIST_CHANGED);
......
...@@ -183,7 +183,7 @@ import org.checkerframework.checker.nullness.qual.NonNull; ...@@ -183,7 +183,7 @@ import org.checkerframework.checker.nullness.qual.NonNull;
controller -> controller ->
controller.onPlayerInfoChanged( controller.onPlayerInfoChanged(
playerInfo, playerInfo,
/* timelineChangedReason */ Player.TIMELINE_CHANGE_REASON_SOURCE_UPDATE, /* timelineChangedReason= */ Player.TIMELINE_CHANGE_REASON_SOURCE_UPDATE,
isTimelineExcluded)); isTimelineExcluded));
} }
......
...@@ -320,7 +320,7 @@ import org.checkerframework.checker.nullness.compatqual.NullableType; ...@@ -320,7 +320,7 @@ import org.checkerframework.checker.nullness.compatqual.NullableType;
return result; return result;
} }
/* Converts a {@link MediaItem} to a {@link MediaDescriptionCompat}. */ /** Converts a {@link MediaItem} to a {@link MediaDescriptionCompat}. */
public static MediaDescriptionCompat convertToMediaDescriptionCompat(MediaItem item) { public static MediaDescriptionCompat convertToMediaDescriptionCompat(MediaItem item) {
MediaDescriptionCompat.Builder builder = MediaDescriptionCompat.Builder builder =
new MediaDescriptionCompat.Builder() new MediaDescriptionCompat.Builder()
......
...@@ -399,7 +399,7 @@ public final class SessionToken implements Bundleable { ...@@ -399,7 +399,7 @@ public final class SessionToken implements Bundleable {
try { try {
return manager.getApplicationInfo(packageName, 0).uid; return manager.getApplicationInfo(packageName, 0).uid;
} catch (PackageManager.NameNotFoundException e) { } catch (PackageManager.NameNotFoundException e) {
throw new IllegalArgumentException("Cannot find package " + packageName); throw new IllegalArgumentException("Cannot find package " + packageName, e);
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment