@@ -64,7 +64,6 @@ private LSPImages() {
6464 public static final String IMG_CONSTANT = "IMG_CONSTANT" ; //$NON-NLS-1$
6565 public static final String IMG_OBJECT = "IMG_OBJECT" ; //$NON-NLS-1$
6666 public static final String IMG_TEXT = "IMG_TEXT" ; //$NON-NLS-1$
67- public static final String IMG_STRING = IMG_TEXT ;
6867 public static final String IMG_NUMBER = "IMG_NUMBER" ; //$NON-NLS-1$
6968 public static final String IMG_BOOLEAN = "IMG_BOOLEAN" ; //$NON-NLS-1$
7069 public static final String IMG_ARRAY = "IMG_ARRAY" ; //$NON-NLS-1$
@@ -73,7 +72,6 @@ private LSPImages() {
7372 public static final String IMG_VALUE = "IMG_VALUE" ; //$NON-NLS-1$
7473 public static final String IMG_KEYWORD = "IMG_KEYWORD" ; //$NON-NLS-1$
7574 public static final String IMG_SNIPPET = "IMG_SNIPPET" ; //$NON-NLS-1$
76- public static final String IMG_COLOR = "IMG_COLOR" ; //$NON-NLS-1$
7775 public static final String IMG_REFERENCE = "IMG_REFERENCE" ; //$NON-NLS-1$
7876 public static final String IMG_TERMINATE_CO = "IMG_TERMINATE_CO" ; //$NON-NLS-1$
7977
@@ -100,7 +98,6 @@ public static void initalize(ImageRegistry registry) {
10098 declareRegistryImage (IMG_VARIABLE , OBJECT + "variable.svg" ); //$NON-NLS-1$
10199 declareRegistryImage (IMG_CONSTANT , OBJECT + "constant.svg" ); //$NON-NLS-1$
102100 declareRegistryImage (IMG_OBJECT , OBJECT + "object.png" ); //$NON-NLS-1$
103- declareRegistryImage (IMG_STRING , OBJECT + "string.png" ); //$NON-NLS-1$
104101 declareRegistryImage (IMG_NUMBER , OBJECT + "number.svg" ); //$NON-NLS-1$
105102 declareRegistryImage (IMG_BOOLEAN , OBJECT + "boolean.svg" ); //$NON-NLS-1$
106103 declareRegistryImage (IMG_ARRAY , OBJECT + "array.png" ); //$NON-NLS-1$
@@ -111,7 +108,6 @@ public static void initalize(ImageRegistry registry) {
111108 declareRegistryImage (IMG_VALUE , OBJECT + "value.svg" ); //$NON-NLS-1$
112109 declareRegistryImage (IMG_KEYWORD , OBJECT + "keyword.svg" ); //$NON-NLS-1$
113110 declareRegistryImage (IMG_SNIPPET , OBJECT + "snippet.svg" ); //$NON-NLS-1$
114- declareRegistryImage (IMG_COLOR , OBJECT + "color.png" ); //$NON-NLS-1$
115111 declareRegistryImage (IMG_REFERENCE , OBJECT + "reference.svg" ); //$NON-NLS-1$
116112 declareRegistryImage (IMG_SUPERTYPE , ACTION + "super_co.png" ); //$NON-NLS-1$
117113 declareRegistryImage (IMG_SUBTYPE , ACTION + "sub_co.png" ); //$NON-NLS-1$
@@ -196,7 +192,7 @@ public static ImageRegistry getImageRegistry() {
196192 case Object -> getImage (IMG_OBJECT );
197193 case Package -> getImage (IMG_PACKAGE );
198194 case Property -> getImage (IMG_PROPERTY );
199- case String -> getImage (IMG_STRING );
195+ case String -> getImage (IMG_TEXT );
200196 case TypeParameter -> getImage (IMG_TYPE_PARAMETER );
201197 case Variable -> getImage (IMG_VARIABLE );
202198 case Null -> getImage (IMG_NULL );
0 commit comments