Skip to content

Commit 365ea5f

Browse files
committed
Removed unneccessary logs.
1 parent 02e8149 commit 365ea5f

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

MPChartLib/src/com/github/mikephil/charting/charts/BarChart.java

-1
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,6 @@ protected Highlight getStackedHighlight(int xIndex, int dataSet, double yValue)
201201
BarEntry entry = mData.getDataSetByIndex(dataSet).getEntryForXIndex(xIndex);
202202
int stackIndex = entry.getClosestIndexAbove((float) yValue);
203203
Highlight h = new Highlight(xIndex, dataSet, stackIndex);
204-
Log.i(LOG_TAG, h.toString());
205204
return h;
206205
}
207206

MPChartLib/src/com/github/mikephil/charting/charts/BarLineChartBase.java

-2
Original file line numberDiff line numberDiff line change
@@ -285,8 +285,6 @@ protected void calcMinMax() {
285285
float bottomSpaceLeft = leftRange / 100f * mAxisLeft.getSpaceBottom();
286286
float bottomSpaceRight = rightRange / 100f * mAxisRight.getSpaceBottom();
287287

288-
Log.i(LOG_TAG, "minLeft: " + minLeft + ", maxLeft: " + maxLeft);
289-
290288
mXChartMax = mData.getXVals().size() - 1;
291289
mDeltaX = Math.abs(mXChartMax - mXChartMin);
292290

0 commit comments

Comments
 (0)