Commit 2dc2a2f8 authored by Ivan Semenov's avatar Ivan Semenov Committed by intellij-monorepo-bot
Browse files

[vcs] fix compatibility

GitOrigin-RevId: b45536bcd98c780e0af157b29320737a0f5b824e
parent eda2fc73
Branches unavailable Tags unavailable
No related merge requests found
Showing with 9 additions and 9 deletions
+9 -9
......@@ -8,44 +8,44 @@ import java.awt.Point
@Deprecated("Deprecated in favour of tracker-independant LineStatusMarkerRendererWithPopup",
ReplaceWith("LineStatusMarkerRendererWithPopup",
"com.intellij.openapi.vcs.ex.LineStatusMarkerRendererWithPopup"))
open class LineStatusMarkerPopupRenderer(protected val tracker: LineStatusTrackerI<*>)
: LineStatusTrackerMarkerRenderer(tracker) {
open class LineStatusMarkerPopupRenderer(@JvmField protected val myTracker: LineStatusTrackerI<*>)
: LineStatusTrackerMarkerRenderer(myTracker) {
@Deprecated("Use non-inner variant in com.intellij.openapi.vcs.ex.LineStatusMarkerPopupActions",
ReplaceWith("LineStatusMarkerPopupActions.RangeMarkerAction",
"com.intellij.openapi.vcs.ex.LineStatusMarkerPopupActions"))
abstract inner class RangeMarkerAction(editor: Editor, range: Range, actionId: @NonNls String?)
: LineStatusMarkerPopupActions.RangeMarkerAction(editor, tracker, range, actionId)
: LineStatusMarkerPopupActions.RangeMarkerAction(editor, myTracker, range, actionId)
@Deprecated("Use non-inner variant in com.intellij.openapi.vcs.ex.LineStatusMarkerPopupActions",
ReplaceWith("LineStatusMarkerPopupActions.ShowNextChangeMarkerAction",
"com.intellij.openapi.vcs.ex.LineStatusMarkerPopupActions"))
inner class ShowNextChangeMarkerAction(editor: Editor, range: Range)
: LineStatusMarkerPopupActions.ShowNextChangeMarkerAction(editor, tracker, range, this)
: LineStatusMarkerPopupActions.ShowNextChangeMarkerAction(editor, myTracker, range, this)
@Deprecated("Use non-inner variant in com.intellij.openapi.vcs.ex.LineStatusMarkerPopupActions",
ReplaceWith("LineStatusMarkerPopupActions.ShowPrevChangeMarkerAction",
"com.intellij.openapi.vcs.ex.LineStatusMarkerPopupActions"))
inner class ShowPrevChangeMarkerAction(editor: Editor, range: Range)
: LineStatusMarkerPopupActions.ShowPrevChangeMarkerAction(editor, tracker, range, this)
: LineStatusMarkerPopupActions.ShowPrevChangeMarkerAction(editor, myTracker, range, this)
@Deprecated("Use non-inner variant in com.intellij.openapi.vcs.ex.LineStatusMarkerPopupActions",
ReplaceWith("LineStatusMarkerPopupActions.CopyLineStatusRangeAction",
"com.intellij.openapi.vcs.ex.LineStatusMarkerPopupActions"))
inner class CopyLineStatusRangeAction(editor: Editor, range: Range)
: LineStatusMarkerPopupActions.CopyLineStatusRangeAction(editor, tracker, range)
: LineStatusMarkerPopupActions.CopyLineStatusRangeAction(editor, myTracker, range)
@Deprecated("Use non-inner variant in com.intellij.openapi.vcs.ex.LineStatusMarkerPopupActions",
ReplaceWith("LineStatusMarkerPopupActions.ShowLineStatusRangeDiffAction",
"com.intellij.openapi.vcs.ex.LineStatusMarkerPopupActions"))
inner class ShowLineStatusRangeDiffAction(editor: Editor, range: Range)
: LineStatusMarkerPopupActions.ShowLineStatusRangeDiffAction(editor, tracker, range)
: LineStatusMarkerPopupActions.ShowLineStatusRangeDiffAction(editor, myTracker, range)
@Deprecated("Use non-inner variant in com.intellij.openapi.vcs.ex.LineStatusMarkerPopupActions",
ReplaceWith("LineStatusMarkerPopupActions.ToggleByWordDiffAction",
"com.intellij.openapi.vcs.ex.LineStatusMarkerPopupActions"))
inner class ToggleByWordDiffAction(editor: Editor, range: Range, mousePosition: Point?)
: LineStatusMarkerPopupActions.ToggleByWordDiffAction(editor, tracker, range, mousePosition, this)
: LineStatusMarkerPopupActions.ToggleByWordDiffAction(editor, myTracker, range, mousePosition, this)
override fun toString(): String = "LineStatusMarkerPopupRenderer(tracker=$tracker)"
override fun toString(): String = "LineStatusMarkerPopupRenderer(tracker=$myTracker)"
}
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment