ErrorProne: fix sampler/MissingSummary

This commit is contained in:
mkpaz 2023-02-09 15:23:38 +04:00
parent 82b221dc33
commit b894422c68
2 changed files with 2 additions and 2 deletions

@ -76,7 +76,7 @@ public final class ThemeManager {
return getRepository().getAll().get(0);
}
/** @see SamplerTheme */
/** See {@link SamplerTheme}. */
public void setTheme(SamplerTheme theme) {
Objects.requireNonNull(theme);

@ -75,7 +75,7 @@ public enum ContrastLevel {
}
/**
* @see ContrastLevel#getColorLuminance(double[])
* See {@link ContrastLevel#getColorLuminance}.
*/
public static double getColorLuminance(Color color) {
return getColorLuminance(new double[]{color.getRed(), color.getGreen(), color.getBlue()});