mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 21:52:48 +07:00
GitOrigin-RevId: cca73c34c744268c6618b65785c7f368233ffb50
8 lines
201 B
Java
8 lines
201 B
Java
import java.awt.Color;
|
|
|
|
class UseGrayConstantFixInConstant {
|
|
|
|
private static final Color GRAY_CONSTANT = <warning descr="'java.awt.Color' used for gray">new Co<caret>lor(125, 125, 125)</warning>;
|
|
|
|
}
|