mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 06:01:00 +07:00
GitOrigin-RevId: c0b766b88a34cfccf4a349ffb0ae8cdd0d986ae8
14 lines
207 B
Java
14 lines
207 B
Java
import com.intellij.ui.Gray;
|
|
|
|
import java.awt.Color;
|
|
|
|
class UseGrayConstantFixWhenNumberConstantsReferenced {
|
|
|
|
private static final int GRAY_VALUE = 125;
|
|
|
|
void any() {
|
|
Color gray = Gray._125;
|
|
}
|
|
|
|
}
|