[python] PythonPsiApiIcons moved to com.jetbrains.python package, as whole community.python.impl must be there

GitOrigin-RevId: 0c38ddbdd5b0588ed4ec09c1d447248678974323
This commit is contained in:
Ilya.Kazakevich
2024-01-11 16:48:36 +01:00
committed by intellij-monorepo-bot
parent f8a5625f99
commit e4a56dc87f
137 changed files with 168 additions and 148 deletions

View File

@@ -0,0 +1,18 @@
// Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
package com.jetbrains.python.parser.icons;
import com.intellij.ui.IconManager;
import org.jetbrains.annotations.NotNull;
import javax.swing.*;
/**
* NOTE THIS FILE IS AUTO-GENERATED
* DO NOT EDIT IT BY HAND, run "Generate icon classes" configuration instead
*/
public final class PythonParserIcons {
private static @NotNull Icon load(@NotNull String path, int cacheKey, int flags) {
return IconManager.getInstance().loadRasterizedIcon(path, PythonParserIcons.class.getClassLoader(), cacheKey, flags);
}
/** 16x16 */ public static final @NotNull Icon PythonFile = load("icons/com/jetbrains/python/parser/pythonFile.svg", -1892316725, 0);
}