From 88ca7f548ba4a057f53f44e47fcd2a749cfb8498 Mon Sep 17 00:00:00 2001 From: Hannes Achleitner Date: Mon, 16 Mar 2026 09:30:43 +0100 Subject: [PATCH] Remove legacy packagename --- .../mikephil/charting/charts/BarChart.kt | 22 ------------------ .../mikephil/charting/charts/BubbleChart.kt | 20 ---------------- .../charting/charts/CandleStickChart.kt | 20 ---------------- .../mikephil/charting/charts/CombinedChart.kt | 23 ------------------- .../charting/charts/HorizontalBarChart.kt | 20 ---------------- .../mikephil/charting/charts/LineChart.kt | 18 --------------- .../mikephil/charting/charts/PieChart.kt | 20 ---------------- .../mikephil/charting/charts/RadarChart.kt | 21 ----------------- .../mikephil/charting/charts/ScatterChart.kt | 20 ---------------- 9 files changed, 184 deletions(-) delete mode 100644 chartLib/src/main/kotlin/com/github/mikephil/charting/charts/BarChart.kt delete mode 100644 chartLib/src/main/kotlin/com/github/mikephil/charting/charts/BubbleChart.kt delete mode 100644 chartLib/src/main/kotlin/com/github/mikephil/charting/charts/CandleStickChart.kt delete mode 100644 chartLib/src/main/kotlin/com/github/mikephil/charting/charts/CombinedChart.kt delete mode 100644 chartLib/src/main/kotlin/com/github/mikephil/charting/charts/HorizontalBarChart.kt delete mode 100644 chartLib/src/main/kotlin/com/github/mikephil/charting/charts/LineChart.kt delete mode 100644 chartLib/src/main/kotlin/com/github/mikephil/charting/charts/PieChart.kt delete mode 100644 chartLib/src/main/kotlin/com/github/mikephil/charting/charts/RadarChart.kt delete mode 100644 chartLib/src/main/kotlin/com/github/mikephil/charting/charts/ScatterChart.kt diff --git a/chartLib/src/main/kotlin/com/github/mikephil/charting/charts/BarChart.kt b/chartLib/src/main/kotlin/com/github/mikephil/charting/charts/BarChart.kt deleted file mode 100644 index c534e929b..000000000 --- a/chartLib/src/main/kotlin/com/github/mikephil/charting/charts/BarChart.kt +++ /dev/null @@ -1,22 +0,0 @@ -package com.github.mikephil.charting.charts - -import android.content.Context -import android.util.Log - -@Deprecated("Use same class from package info.appdev.charting.charts instead") -open class BarChart : info.appdev.charting.charts.BarChart { - @Deprecated("Use same class from package info.appdev.charting.charts instead") - constructor(context: Context?) : super(context) - - @Deprecated("Use same class from package info.appdev.charting.charts instead") - constructor(context: Context?, attrs: android.util.AttributeSet?) : super(context, attrs) - - @Deprecated("Use same class from package info.appdev.charting.charts instead") - constructor(context: Context?, attrs: android.util.AttributeSet?, defStyle: Int) : super(context, attrs, defStyle) - - - override fun init() { - super.init() - Log.e("BarChart", "This class is deprecated. Please use info.appdev.charting.charts.BarChart instead.") - } -} diff --git a/chartLib/src/main/kotlin/com/github/mikephil/charting/charts/BubbleChart.kt b/chartLib/src/main/kotlin/com/github/mikephil/charting/charts/BubbleChart.kt deleted file mode 100644 index 8eb60baff..000000000 --- a/chartLib/src/main/kotlin/com/github/mikephil/charting/charts/BubbleChart.kt +++ /dev/null @@ -1,20 +0,0 @@ -package com.github.mikephil.charting.charts - -import android.content.Context -import android.util.AttributeSet -import android.util.Log -import info.appdev.charting.charts.BubbleChart - -@Deprecated("Use same class from package info.appdev.charting.charts instead") -class BubbleChart : BubbleChart { - constructor(context: Context?) : super(context) - - constructor(context: Context?, attrs: AttributeSet?) : super(context, attrs) - - constructor(context: Context?, attrs: AttributeSet?, defStyle: Int) : super(context, attrs, defStyle) - - override fun init() { - super.init() - Log.e("BubbleChart", "This class is deprecated. Please use info.appdev.charting.charts.BubbleChart instead.") - } -} diff --git a/chartLib/src/main/kotlin/com/github/mikephil/charting/charts/CandleStickChart.kt b/chartLib/src/main/kotlin/com/github/mikephil/charting/charts/CandleStickChart.kt deleted file mode 100644 index 3ea2d8891..000000000 --- a/chartLib/src/main/kotlin/com/github/mikephil/charting/charts/CandleStickChart.kt +++ /dev/null @@ -1,20 +0,0 @@ -package com.github.mikephil.charting.charts - -import android.content.Context -import android.util.AttributeSet -import android.util.Log -import info.appdev.charting.charts.CandleStickChart - -@Deprecated("Use same class from package info.appdev.charting.charts instead") -class CandleStickChart : CandleStickChart { - constructor(context: Context?) : super(context) - - constructor(context: Context?, attrs: AttributeSet?) : super(context, attrs) - - constructor(context: Context?, attrs: AttributeSet?, defStyle: Int) : super(context, attrs, defStyle) - - override fun init() { - super.init() - Log.e("CandleStickChart", "This class is deprecated. Please use info.appdev.charting.charts.CandleStickChart instead.") - } -} diff --git a/chartLib/src/main/kotlin/com/github/mikephil/charting/charts/CombinedChart.kt b/chartLib/src/main/kotlin/com/github/mikephil/charting/charts/CombinedChart.kt deleted file mode 100644 index ca31dc98c..000000000 --- a/chartLib/src/main/kotlin/com/github/mikephil/charting/charts/CombinedChart.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.github.mikephil.charting.charts - -import android.content.Context -import android.util.AttributeSet -import android.util.Log -import info.appdev.charting.charts.CombinedChart - -@Deprecated("Use same class from package info.appdev.charting.charts instead") -open class CombinedChart : CombinedChart { - @Deprecated("Use same class from package info.appdev.charting.charts instead") - constructor(context: Context?) : super(context) - - @Deprecated("Use same class from package info.appdev.charting.charts instead") - constructor(context: Context?, attrs: AttributeSet?) : super(context, attrs) - - @Deprecated("Use same class from package info.appdev.charting.charts instead") - constructor(context: Context?, attrs: AttributeSet?, defStyle: Int) : super(context, attrs, defStyle) - - override fun init() { - super.init() - Log.e("CombinedChart", "This class is deprecated. Please use info.appdev.charting.charts.CombinedChart instead.") - } -} diff --git a/chartLib/src/main/kotlin/com/github/mikephil/charting/charts/HorizontalBarChart.kt b/chartLib/src/main/kotlin/com/github/mikephil/charting/charts/HorizontalBarChart.kt deleted file mode 100644 index 983432f4a..000000000 --- a/chartLib/src/main/kotlin/com/github/mikephil/charting/charts/HorizontalBarChart.kt +++ /dev/null @@ -1,20 +0,0 @@ -package com.github.mikephil.charting.charts - -import android.content.Context -import android.util.AttributeSet -import android.util.Log -import info.appdev.charting.charts.HorizontalBarChart - -@Deprecated("Use same class from package info.appdev.charting.charts instead") -open class HorizontalBarChart : HorizontalBarChart { - constructor(context: Context?) : super(context) - - constructor(context: Context?, attrs: AttributeSet?) : super(context, attrs) - - constructor(context: Context?, attrs: AttributeSet?, defStyle: Int) : super(context, attrs, defStyle) - - override fun init() { - super.init() - Log.e("HorizontalBarChart", "This class is deprecated. Please use info.appdev.charting.charts.HorizontalBarChart instead.") - } -} diff --git a/chartLib/src/main/kotlin/com/github/mikephil/charting/charts/LineChart.kt b/chartLib/src/main/kotlin/com/github/mikephil/charting/charts/LineChart.kt deleted file mode 100644 index 76037a156..000000000 --- a/chartLib/src/main/kotlin/com/github/mikephil/charting/charts/LineChart.kt +++ /dev/null @@ -1,18 +0,0 @@ -package com.github.mikephil.charting.charts - -import android.content.Context -import android.util.AttributeSet -import android.util.Log -import info.appdev.charting.charts.LineChart - -@Deprecated("Use same class from package info.appdev.charting.charts instead") -open class LineChart : LineChart { - constructor(context: Context?) : super(context) - constructor(context: Context?, attrs: AttributeSet?) : super(context, attrs) - constructor(context: Context?, attrs: AttributeSet?, defStyle: Int) : super(context, attrs, defStyle) - - override fun init() { - super.init() - Log.e("LineChart", "This class is deprecated. Please use info.appdev.charting.charts.LineChart instead.") - } -} diff --git a/chartLib/src/main/kotlin/com/github/mikephil/charting/charts/PieChart.kt b/chartLib/src/main/kotlin/com/github/mikephil/charting/charts/PieChart.kt deleted file mode 100644 index 119941bec..000000000 --- a/chartLib/src/main/kotlin/com/github/mikephil/charting/charts/PieChart.kt +++ /dev/null @@ -1,20 +0,0 @@ -package com.github.mikephil.charting.charts - -import android.content.Context -import android.util.AttributeSet -import android.util.Log -import info.appdev.charting.charts.PieChart - -@Deprecated("Use same class from package info.appdev.charting.charts instead") -class PieChart : PieChart { - constructor(context: Context?) : super(context) - - constructor(context: Context?, attrs: AttributeSet?) : super(context, attrs) - - constructor(context: Context?, attrs: AttributeSet?, defStyle: Int) : super(context, attrs, defStyle) - - override fun init() { - super.init() - Log.e("PieChart", "This class is deprecated. Please use info.appdev.charting.charts.PieChart instead.") - } -} diff --git a/chartLib/src/main/kotlin/com/github/mikephil/charting/charts/RadarChart.kt b/chartLib/src/main/kotlin/com/github/mikephil/charting/charts/RadarChart.kt deleted file mode 100644 index 133020416..000000000 --- a/chartLib/src/main/kotlin/com/github/mikephil/charting/charts/RadarChart.kt +++ /dev/null @@ -1,21 +0,0 @@ -package com.github.mikephil.charting.charts - -import android.content.Context -import android.util.AttributeSet -import android.util.Log -import info.appdev.charting.charts.RadarChart - -@Deprecated("Use same class from package info.appdev.charting.charts instead") -open class RadarChart : RadarChart { - constructor(context: Context?) : super(context) - - constructor(context: Context?, attrs: AttributeSet?) : super(context, attrs) - - constructor(context: Context?, attrs: AttributeSet?, defStyle: Int) : super(context, attrs, defStyle) - - override fun init() { - super.init() - Log.e("RadarChart", "This class is deprecated. Please use info.appdev.charting.charts.RadarChart instead.") - } -} - diff --git a/chartLib/src/main/kotlin/com/github/mikephil/charting/charts/ScatterChart.kt b/chartLib/src/main/kotlin/com/github/mikephil/charting/charts/ScatterChart.kt deleted file mode 100644 index 8a8247ede..000000000 --- a/chartLib/src/main/kotlin/com/github/mikephil/charting/charts/ScatterChart.kt +++ /dev/null @@ -1,20 +0,0 @@ -package com.github.mikephil.charting.charts - -import android.content.Context -import android.util.AttributeSet -import android.util.Log -import info.appdev.charting.charts.ScatterChart - -@Deprecated("Use same class from package info.appdev.charting.charts instead") -class ScatterChart : ScatterChart { - constructor(context: Context?) : super(context) - - constructor(context: Context?, attrs: AttributeSet?) : super(context, attrs) - - constructor(context: Context?, attrs: AttributeSet?, defStyle: Int) : super(context, attrs, defStyle) - - override fun init() { - super.init() - Log.e("ScatterChart", "This class is deprecated. Please use info.appdev.charting.charts.ScatterChart instead.") - } -}