diff Framework/Loaders/BasicFetchingStrategy.cpp @ 709:7457b4ee1f29

VolumeSeriesOrthancLoader uses a prefetching strategy
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 20 May 2019 12:03:16 +0200
parents 51976977d2d3
children 5b16242cdc93
line wrap: on
line diff
--- a/Framework/Loaders/BasicFetchingStrategy.cpp	Mon May 20 11:20:01 2019 +0200
+++ b/Framework/Loaders/BasicFetchingStrategy.cpp	Mon May 20 12:03:16 2019 +0200
@@ -50,13 +50,12 @@
       throw Orthanc::OrthancException(Orthanc::ErrorCode_NullPointer);
     }
 
-    nextQuality_.resize(sorter_->GetItemsCount(), 0),   // Does not change along calls to "SetCurrent()"
+    nextQuality_.resize(sorter_->GetItemsCount(), 0);   // Does not change along calls to "SetCurrent()"
       
-                  SetCurrent(0);
+    SetCurrent(0);
   }
 
 
-  // WARNING - This parameters is only considered during the next call to SetCurrent().
   void BasicFetchingStrategy::SetBlockSize(unsigned int size)
   {
     if (size <= 0)