Commit 1a557525 authored by joreland@mysql.com's avatar joreland@mysql.com

removed unused and illegal print method

parent 84de86c3
......@@ -148,26 +148,6 @@ public:
void releaseList(Uint32 n, Uint32 first, Uint32 last);
//private:
/**
* Print
* (Run operator NdbOut<< on every element)
*/
void print(NdbOut & out){
#ifdef VM_TRACE
out << "FirstFree = " << firstFree << endl;
for(Uint32 i = 0; i<size; i++){
#ifdef ARRAY_GUARD
if(BitmaskImpl::get(bitmaskSz, theAllocatedBitmask, i))
out << "A ";
else
out << "F ";
#endif
out << i << ": " << theArray[i] << " ";
}
out << endl;
#endif
}
#ifdef DEBUG
Uint32 getNoOfFree2() const {
Uint32 c2 = size;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment