Commit 689f4f27 authored by unknown's avatar unknown
Browse files

removed unused and illegal print method

parent 67570b8b
Loading
Loading
Loading
Loading
+0 −20
Original line number Diff line number Diff line
@@ -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;