mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
Remove incorrect @Nullable annotation
GitOrigin-RevId: 919845af67d06dd4b7485fb862153cfb1b751430
This commit is contained in:
committed by
intellij-monorepo-bot
parent
a55a4a6b0f
commit
f27ac8953d
@@ -1,4 +1,4 @@
|
||||
// Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
|
||||
// Copyright 2000-2025 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
|
||||
package com.intellij.psi.impl.source.codeStyle;
|
||||
|
||||
import com.intellij.lang.*;
|
||||
@@ -329,7 +329,7 @@ public final class CodeEditUtil {
|
||||
return element.getCopyableUserData(REFORMAT_BEFORE_KEY) != null;
|
||||
}
|
||||
|
||||
public static @Nullable PsiElement createLineFeed(@NotNull PsiManager manager) {
|
||||
public static PsiElement createLineFeed(@NotNull PsiManager manager) {
|
||||
return Factory.createSingleLeafElement(TokenType.WHITE_SPACE, "\n", 0, 1, null, manager).getPsi();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user