@@ -161,7 +161,6 @@ GalleyVectorBase::extract_internal(std::shared_ptr<Blob> blob)
161161/* Stamp is variated size*/
162162int fixed_size = stamp->minSize ();
163163int var_size = stamp->maxSize () - fixed_size;
164- fprintf (stderr," fixed = %i, var_size = %i\n " , fixed_size, var_size);
165164
166165 ORACLE_STAMP stamp_oracle;
167166while (1 )
@@ -175,7 +174,6 @@ fprintf(stderr, "fixed = %i, var_size = %i\n", fixed_size, var_size);
175174if (size > blob->Size ())
176175 size = blob->Size ();// Getting what have been left, if not as much as we wanted
177176
178- fprintf (stderr," ---- %i %i\n " , size, blob->Size ());
179177 std::shared_ptr<Blob> blob2 = blob->Chop (size);
180178 res.push_back (blob2);
181179 }
@@ -346,7 +344,7 @@ GalleySetBase::extract_internal(std::shared_ptr<Blob> blob)
346344 unbounded_remainder = len - el_size;
347345 el_size +=s->minSize ();
348346 }
349- std::shared_ptr<Blob> blob2 = blob->Chop (el_size);
347+ std::shared_ptr<Blob> blob2 = blob->Chop (el_size);
350348 res.push_back (blob2);
351349 }
352350return res;
@@ -358,7 +356,7 @@ GalleySetBase::LoadAll(std::shared_ptr<Blob> blob)
358356 std::vector<std::shared_ptr<Blob>> blobs =extract_internal (blob);
359357for (int i=0 ; i<blobs.size (); i++)
360358 {
361- std::shared_ptr<Blob> blob = blobs[i];
359+ std::shared_ptr<Blob> blob = blobs[i];
362360 std::shared_ptr<StampBase> s = stamps[i];
363361 s->Load (blob);
364362 }
@@ -372,7 +370,7 @@ GalleySetStr::ExtractStrSet(std::shared_ptr<Blob> blob)
372370 std::vector<std::shared_ptr<Blob>> blobs =extract_internal (blob);
373371for (int i=0 ; i<blobs.size (); i++)
374372 {
375- std::shared_ptr<Blob> blob = blobs[i];
373+ std::shared_ptr<Blob> blob = blobs[i];
376374auto stamp = std::dynamic_pointer_cast<StampBaseStr>(stamps[i]);
377375 std::string str = stamp->ExtractStr (blob);
378376 res.push_back (str);
@@ -387,7 +385,7 @@ GalleySetBin::ExtractBinSet(std::shared_ptr<Blob> blob)
387385 std::vector<std::shared_ptr<Blob>> blobs =extract_internal (blob);
388386for (int i=0 ; i<blobs.size (); i++)
389387 {
390- std::shared_ptr<Blob> blob = blobs[i];
388+ std::shared_ptr<Blob> blob = blobs[i];
391389auto stamp = std::dynamic_pointer_cast<StampBaseBin>(stamps[i]);
392390 std::vector<char > v = stamp->ExtractBin (blob);
393391 res.push_back (v);