Commit 3a77e7b2 authored by Paul Asmuth's avatar Paul Asmuth
Browse files

delete dead code

parent 95cbf4a9
Loading
Loading
Loading
Loading
+1 −9
Original line number Diff line number Diff line
@@ -45,8 +45,7 @@ public:
          "#3d96ae",
          "#db843d",
          }) :
          colors_(colors),
          color_index_(0) {}
          colors_(colors) {}

  Color get(size_t seq) const {
    Color c;
@@ -54,15 +53,8 @@ public:
    return c;
  }

  Color next() {
    Color c;
    c.parse(colors_[color_index_++ % colors_.size()]);
    return c;
  }

protected:
  std::vector<std::string> colors_;
  size_t color_index_;
};

} // namespace plotfx