mirror of
https://github.com/samsonjs/media.git
synced 2026-04-27 15:07:40 +00:00
Replace literal with constant variable
This commit is contained in:
parent
c7fe0662ce
commit
fc61d96d5c
1 changed files with 1 additions and 1 deletions
|
|
@ -190,7 +190,7 @@ public class DebugTextViewHelper {
|
||||||
}
|
}
|
||||||
|
|
||||||
private static String getBitdepthInfoString(int lumaBitdepth) {
|
private static String getBitdepthInfoString(int lumaBitdepth) {
|
||||||
return lumaBitdepth != -1 ? " b:" + lumaBitdepth : "";
|
return lumaBitdepth != Format.NO_VALUE ? " b:" + lumaBitdepth : "";
|
||||||
}
|
}
|
||||||
|
|
||||||
private static String getColorInfoString(@Nullable ColorInfo colorInfo) {
|
private static String getColorInfoString(@Nullable ColorInfo colorInfo) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue