[vcs] Mark ChangeReferenceProcessor as internal.

GitOrigin-RevId: 474ae2d4cfb8150e826de7eaca26bff798aa7f3b
This commit is contained in:
Denis Zaichenko
2024-07-26 16:18:09 +02:00
committed by intellij-monorepo-bot
parent 46aa6ba5a3
commit 34351be93c
2 changed files with 1 additions and 7 deletions

View File

@@ -640,12 +640,6 @@ a:com.intellij.diff.lang.LangDiffIgnoredRangeProvider
- pa:accepts(com.intellij.openapi.project.Project,com.intellij.lang.Language):Z
- pa:computeIgnoredRanges(com.intellij.openapi.project.Project,java.lang.CharSequence,com.intellij.lang.Language):java.util.List
- getIgnoredRanges(com.intellij.openapi.project.Project,java.lang.CharSequence,com.intellij.diff.contents.DiffContent):java.util.List
f:com.intellij.diff.merge.ChangeReferenceProcessor
- sf:Companion:com.intellij.diff.merge.ChangeReferenceProcessor$Companion
- <init>(com.intellij.openapi.project.Project,com.intellij.openapi.editor.Editor,java.util.List,java.util.List):V
- f:process(com.intellij.diff.util.ThreeSide,java.util.List,java.util.List):V
f:com.intellij.diff.merge.ChangeReferenceProcessor$Companion
- f:getLOG():com.intellij.openapi.diagnostic.Logger
a:com.intellij.diff.merge.MergeContextEx
- com.intellij.diff.merge.MergeContext
- <init>():V

View File

@@ -21,7 +21,7 @@ import com.intellij.openapi.util.TextRange
import com.intellij.psi.PsiFile
import java.util.concurrent.ConcurrentHashMap
class ChangeReferenceProcessor(private val project: Project, private val editor: Editor, private val files: List<PsiFile>, private val documents: List<Document>) {
internal class ChangeReferenceProcessor(private val project: Project, private val editor: Editor, private val files: List<PsiFile>, private val documents: List<Document>) {
private val innerDifferencesCache: MutableMap<TextMergeChange, MergeInnerDifferences?> = ConcurrentHashMap()