Skip to content

Commit

Permalink
Removed unneccessary logs.
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilJay committed Feb 27, 2015
1 parent 02e8149 commit 365ea5f
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,6 @@ protected Highlight getStackedHighlight(int xIndex, int dataSet, double yValue)
BarEntry entry = mData.getDataSetByIndex(dataSet).getEntryForXIndex(xIndex);
int stackIndex = entry.getClosestIndexAbove((float) yValue);
Highlight h = new Highlight(xIndex, dataSet, stackIndex);
Log.i(LOG_TAG, h.toString());
return h;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -285,8 +285,6 @@ protected void calcMinMax() {
float bottomSpaceLeft = leftRange / 100f * mAxisLeft.getSpaceBottom();
float bottomSpaceRight = rightRange / 100f * mAxisRight.getSpaceBottom();

Log.i(LOG_TAG, "minLeft: " + minLeft + ", maxLeft: " + maxLeft);

mXChartMax = mData.getXVals().size() - 1;
mDeltaX = Math.abs(mXChartMax - mXChartMin);

Expand Down

0 comments on commit 365ea5f

Please sign in to comment.