Skip to content

Commit 89ff829

Browse files
LuciferYangdongjoon-hyun
authored andcommitted
[SPARK-45875][CORE] Remove MissingStageTableRowData from core module
### What changes were proposed in this pull request? SPARK-15591(#13708) introduced the `MissingStageTableRowData`, but it is no longer used after SPARK-20648(#19698), so this PR removes it. ### Why are the changes needed? Clean up unused code. ### Does this PR introduce _any_ user-facing change? No ### How was this patch tested? Pass GitHub Actions ### Was this patch authored or co-authored using generative AI tooling? No Closes #43748 from LuciferYang/SPARK-45875. Authored-by: yangjie01 <[email protected]> Signed-off-by: Dongjoon Hyun <[email protected]>
1 parent eccf076 commit 89ff829

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

core/src/main/scala/org/apache/spark/ui/jobs/StageTable.scala

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -90,13 +90,6 @@ private[ui] class StageTableRowData(
9090
val shuffleWrite: Long,
9191
val shuffleWriteWithUnit: String)
9292

93-
private[ui] class MissingStageTableRowData(
94-
stageInfo: v1.StageData,
95-
stageId: Int,
96-
attemptId: Int) extends StageTableRowData(
97-
stageInfo, None, stageId, attemptId, "", None, new Date(0), "", -1, "", 0, "", 0, "", 0, "", 0,
98-
"")
99-
10093
/** Page showing list of all ongoing and recently finished stages */
10194
private[ui] class StagePagedTable(
10295
store: AppStatusStore,

0 commit comments

Comments
 (0)