Commit 40b747aa authored by Paul Asmuth's avatar Paul Asmuth
Browse files

cleaning up

parent 58341eed
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -182,10 +182,6 @@ void BarChart3D<TX, TY, TZ>::addSeries(Series3D<TX, TY, TZ>* series) {
    y_domain->addValue(point.y());
    y_domain->addValue(static_cast<TY>(point.z()));

    printf("adddata: y=%s,z=%s\n",
        std::to_string(point.y()).c_str(),
        std::to_string(point.z()).c_str());

    if (!(point.y() <= point.z())) {
      RAISE(
          util::RuntimeException,