diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c64cea94d..989d8e73f 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -9,12 +9,14 @@ Since last release **Changed:** -* Rely on `python3` in environment instead of `python` (#602) +* Rely on ``python3`` in environment instead of ``python`` (#602) **Fixed:** **Removed:** +* Removed references to deprecated ``ResourceBuff`` class (#604) + v1.6.0 ==================== diff --git a/src/storage.cc b/src/storage.cc index 276326388..96487b44c 100644 --- a/src/storage.cc +++ b/src/storage.cc @@ -41,8 +41,7 @@ void Storage::InitFrom(Storage* m) { void Storage::InitFrom(cyclus::QueryableBackend* b) { #pragma cyclus impl initfromdb cycamore::Storage - using cyclus::toolkit::Commodity; - Commodity commod = Commodity(out_commods.front()); + cyclus::toolkit::Commodity commod = cyclus::toolkit::Commodity(out_commods.front()); cyclus::toolkit::CommodityProducer::Add(commod); cyclus::toolkit::CommodityProducer::SetCapacity(commod, throughput); } @@ -241,7 +240,6 @@ void Storage::Tick() { //- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - void Storage::Tock() { - using cyclus::toolkit::RecordTimeSeries; LOG(cyclus::LEV_INFO3, "ComCnv") << prototype() << " is tocking {"; BeginProcessing_(); // place unprocessed inventory into processing @@ -315,11 +313,6 @@ void Storage::BeginProcessing_() { //- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - void Storage::ProcessMat_(double cap) { - using cyclus::Material; - using cyclus::ResCast; - using cyclus::toolkit::ResBuf; - using cyclus::toolkit::Manifest; - if (!ready.empty()) { try { double max_pop = std::min(cap, ready.quantity()); @@ -351,7 +344,6 @@ void Storage::ProcessMat_(double cap) { //- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - void Storage::ReadyMatl_(int time) { - using cyclus::toolkit::ResBuf; LOG(cyclus::LEV_INFO5, "ComCnv") << "Placing material into ready"; int to_ready = 0;