Skip to content

Commit

Permalink
Fix gradle check
Browse files Browse the repository at this point in the history
  • Loading branch information
hannesa2 committed Nov 28, 2023
1 parent 26fcdbf commit 05dfaaf
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
import android.graphics.drawable.Drawable;

import com.github.mikephil.charting.animation.ChartAnimator;
import com.github.mikephil.charting.charts.LineChart;
import com.github.mikephil.charting.data.Entry;
import com.github.mikephil.charting.data.LineData;
import com.github.mikephil.charting.data.LineDataSet;
Expand Down Expand Up @@ -762,9 +761,6 @@ public Bitmap.Config getBitmapConfig() {
return mBitmapConfig;
}

/**
* Releases the drawing bitmap. This should be called when {@link LineChart#onDetachedFromWindow()}.
*/
public void releaseBitmap() {
if (mBitmapCanvas != null) {
mBitmapCanvas.setBitmap(null);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
import android.text.TextPaint;

import com.github.mikephil.charting.animation.ChartAnimator;
import com.github.mikephil.charting.charts.LineChart;
import com.github.mikephil.charting.charts.PieChart;
import com.github.mikephil.charting.data.Entry;
import com.github.mikephil.charting.data.PieData;
Expand Down Expand Up @@ -1054,9 +1053,6 @@ protected void drawRoundedSlices(Canvas c) {
MPPointF.recycleInstance(center);
}

/**
* Releases the drawing bitmap. This should be called when {@link LineChart#onDetachedFromWindow()}.
*/
public void releaseBitmap() {
if (mBitmapCanvas != null) {
mBitmapCanvas.setBitmap(null);
Expand Down

0 comments on commit 05dfaaf

Please sign in to comment.