mirror of
https://github.com/samsonjs/media.git
synced 2026-04-01 10:35: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
cb04297420
commit
c6ed7c4bcb
1 changed files with 1 additions and 1 deletions
|
|
@ -32,7 +32,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