IJPL-303 cleanup

GitOrigin-RevId: 03f11126abf53759275e3ef4ca18f2c351bb3b1d
This commit is contained in:
Vladimir Krivosheev
2023-10-20 23:11:04 +02:00
committed by intellij-monorepo-bot
parent 5246e6c7c6
commit 9570017312

View File

@@ -18,7 +18,7 @@ import org.jetbrains.annotations.Nullable;
*/
public interface EditorHighlighterProvider {
/**
* Low level API for customizing language's file syntax highlighting in editor component.
* Low-level API for customizing language's file syntax highlighting in an editor component.
*
* @param project The project in which the highlighter will work, or null if the highlighter is not tied to any project.
* @param fileType the file type of the file to be highlighted
@@ -27,6 +27,6 @@ public interface EditorHighlighterProvider {
*/
EditorHighlighter getEditorHighlighter(@Nullable Project project,
@NotNull FileType fileType,
final @Nullable VirtualFile virtualFile,
@Nullable VirtualFile virtualFile,
@NotNull EditorColorsScheme colors);
}