mirror of
https://github.com/samsonjs/media.git
synced 2026-03-28 09:55:48 +00:00
Make Rating.RATING_UNSET package-private
This value is only needed by subclasses of `Rating`, all of which are in this package (the `Rating` constructor is already package-private to ensure this). PiperOrigin-RevId: 450886872
This commit is contained in:
parent
066327daf9
commit
74653838ad
1 changed files with 1 additions and 1 deletions
|
|
@ -31,7 +31,7 @@ import java.lang.annotation.Target;
|
|||
public abstract class Rating implements Bundleable {
|
||||
|
||||
/** A float value that denotes the rating is unset. */
|
||||
public static final float RATING_UNSET = -1.0f;
|
||||
/* package */ static final float RATING_UNSET = -1.0f;
|
||||
|
||||
// Default package-private constructor to prevent extending Rating class outside this package.
|
||||
/* package */ Rating() {}
|
||||
|
|
|
|||
Loading…
Reference in a new issue