mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 17:56:55 +07:00
GitOrigin-RevId: cca73c34c744268c6618b65785c7f368233ffb50
12 lines
148 B
Java
12 lines
148 B
Java
import com.intellij.ui.Gray;
|
|
|
|
import java.awt.Color;
|
|
|
|
class UseGrayConstantFixInLocalVariable {
|
|
|
|
void any() {
|
|
Color myGray = Gray._25;
|
|
}
|
|
|
|
}
|