@@ -363,7 +363,6 @@ public:
363363 // ! if they contain exactly the same keys.
364364 Standard_DEPRECATED (" This method will be removed right after 7.9. release. Use methods from "
365365 " NCollection_MapAlgo.hxx instead." )
366-
367366 Standard_Boolean IsEqual(const NCollection_Map& theOther) const
368367 {
369368 return NCollection_MapAlgo::IsEqual<NCollection_Map>(*this , theOther);
@@ -373,7 +372,6 @@ public:
373372 // ! This function checks if this map contains all keys of another map.
374373 Standard_DEPRECATED (" This method will be removed right after 7.9. release. Use methods from "
375374 " NCollection_MapAlgo.hxx instead." )
376-
377375 Standard_Boolean Contains(const NCollection_Map& theOther) const
378376 {
379377 return NCollection_MapAlgo::Contains<NCollection_Map>(*this , theOther);
@@ -385,7 +383,6 @@ public:
385383 // ! (result of the boolean operation) can also be passed as one of operands.
386384 Standard_DEPRECATED (" This method will be removed right after 7.9. release. Use methods from "
387385 " NCollection_MapAlgo.hxx instead." )
388-
389386 void Union(const NCollection_Map& theLeft, const NCollection_Map& theRight)
390387 {
391388 NCollection_MapAlgo::Union<NCollection_Map>(*this , theLeft, theRight);
@@ -397,7 +394,6 @@ public:
397394 // ! True if contents of this map is changed.
398395 Standard_DEPRECATED (" This method will be removed right after 7.9. release. Use methods from "
399396 " NCollection_MapAlgo.hxx instead." )
400-
401397 Standard_Boolean Unite(const NCollection_Map& theOther)
402398 {
403399 return NCollection_MapAlgo::Unite<NCollection_Map>(*this , theOther);
@@ -406,7 +402,6 @@ public:
406402 // ! Returns true if this and theMap have common elements.
407403 Standard_DEPRECATED (" This method will be removed right after 7.9. release. Use methods from "
408404 " NCollection_MapAlgo.hxx instead." )
409-
410405 Standard_Boolean HasIntersection(const NCollection_Map& theMap) const
411406 {
412407 return NCollection_MapAlgo::HasIntersection<NCollection_Map>(*this , theMap);
@@ -418,7 +413,6 @@ public:
418413 // ! boolean operation) can also be used as one of operands.
419414 Standard_DEPRECATED (" This method will be removed right after 7.9. release. Use methods from "
420415 " NCollection_MapAlgo.hxx instead." )
421-
422416 void Intersection(const NCollection_Map& theLeft, const NCollection_Map& theRight)
423417 {
424418 NCollection_MapAlgo::Intersection<NCollection_Map>(*this , theLeft, theRight);
@@ -430,7 +424,6 @@ public:
430424 // ! of this map is changed.
431425 Standard_DEPRECATED (" This method will be removed right after 7.9. release. Use methods from "
432426 " NCollection_MapAlgo.hxx instead." )
433-
434427 Standard_Boolean Intersect(const NCollection_Map& theOther)
435428 {
436429 return NCollection_MapAlgo::Intersect<NCollection_Map>(*this , theOther);
@@ -442,7 +435,6 @@ public:
442435 // ! one. All previous content of this Map is cleared.
443436 Standard_DEPRECATED (" This method will be removed right after 7.9. release. Use methods from "
444437 " NCollection_MapAlgo.hxx instead." )
445-
446438 void Subtraction(const NCollection_Map& theLeft, const NCollection_Map& theRight)
447439 {
448440 NCollection_MapAlgo::Subtraction<NCollection_Map>(*this , theLeft, theRight);
@@ -455,7 +447,6 @@ public:
455447 // ! Returns True if contents of this map is changed.
456448 Standard_DEPRECATED (" This method will be removed right after 7.9. release. Use methods from "
457449 " NCollection_MapAlgo.hxx instead." )
458-
459450 Standard_Boolean Subtract(const NCollection_Map& theOther)
460451 {
461452 return NCollection_MapAlgo::Subtract<NCollection_Map>(*this , theOther);
@@ -467,7 +458,6 @@ public:
467458 // ! cleared. This map (result of the boolean operation) can also be used as one of operands.
468459 Standard_DEPRECATED (" This method will be removed right after 7.9. release. Use methods from "
469460 " NCollection_MapAlgo.hxx instead." )
470-
471461 void Difference(const NCollection_Map& theLeft, const NCollection_Map& theRight)
472462 {
473463 NCollection_MapAlgo::Difference<NCollection_Map>(*this , theLeft, theRight);
@@ -479,7 +469,6 @@ public:
479469 // ! True if contents of this map is changed.
480470 Standard_DEPRECATED (" This method will be removed right after 7.9. release. Use methods from "
481471 " NCollection_MapAlgo.hxx instead." )
482-
483472 Standard_Boolean Differ(const NCollection_Map& theOther)
484473 {
485474 return NCollection_MapAlgo::Differ<NCollection_Map>(*this , theOther);
0 commit comments