mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 02:59:33 +07:00
use XXH3 instead of MurMur3 to generate an icon image key
The main reason — use XXH3 everywhere GitOrigin-RevId: 7b158b9b3689d16f09182abb0b58113c7303f874
This commit is contained in:
committed by
intellij-monorepo-bot
parent
ac9f30e242
commit
98ace0a061
@@ -13,12 +13,12 @@ public final class LombokIcons {
|
||||
private static @NotNull Icon load(@NotNull String path, int cacheKey, int flags) {
|
||||
return IconManager.getInstance().loadRasterizedIcon(path, LombokIcons.class.getClassLoader(), cacheKey, flags);
|
||||
}
|
||||
/** 16x16 */ public static final @NotNull Icon Config = load("icons/config.svg", -1468466060, 0);
|
||||
/** 16x16 */ public static final @NotNull Icon Lombok = load("icons/lombok.svg", -1830136623, 0);
|
||||
/** 16x16 */ public static final @NotNull Icon Config = load("icons/config.svg", -279046962, 0);
|
||||
/** 16x16 */ public static final @NotNull Icon Lombok = load("icons/lombok.svg", 1502381955, 0);
|
||||
|
||||
public static final class Nodes {
|
||||
/** 16x16 */ public static final @NotNull Icon LombokClass = load("icons/nodes/lombokClass.svg", 941267007, 0);
|
||||
/** 16x16 */ public static final @NotNull Icon LombokField = load("icons/nodes/lombokField.svg", 1508832826, 0);
|
||||
/** 16x16 */ public static final @NotNull Icon LombokMethod = load("icons/nodes/lombokMethod.svg", 738472534, 1);
|
||||
/** 16x16 */ public static final @NotNull Icon LombokClass = load("icons/nodes/lombokClass.svg", -1271283937, 0);
|
||||
/** 16x16 */ public static final @NotNull Icon LombokField = load("icons/nodes/lombokField.svg", -648418489, 0);
|
||||
/** 16x16 */ public static final @NotNull Icon LombokMethod = load("icons/nodes/lombokMethod.svg", 726881794, 1);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user