Removed the "global" replacement instead using an empty string
parent
810f50f336
commit
34c4bfc08a
|
@ -150,7 +150,7 @@ class IconManager extends AbstractIconManager {
|
|||
}
|
||||
|
||||
resolveIcon(iconId: number, serverUniqueId: string, handlerIdHint: string): RemoteIcon {
|
||||
serverUniqueId = serverUniqueId || "global";
|
||||
serverUniqueId = serverUniqueId || "";
|
||||
|
||||
/* just to ensure */
|
||||
iconId = iconId >>> 0;
|
||||
|
|
|
@ -54,7 +54,7 @@ class RemoteIconManager extends AbstractIconManager {
|
|||
}
|
||||
|
||||
resolveIcon(iconId: number, serverUniqueId?: string, handlerId?: string): RemoteIcon {
|
||||
serverUniqueId = serverUniqueId || "global";
|
||||
serverUniqueId = serverUniqueId || "";
|
||||
|
||||
iconId = iconId >>> 0;
|
||||
|
||||
|
|
Loading…
Reference in New Issue