in reply to Re^4: "use" modules inside modules
in thread "use" modules inside modules
The end result being that, wheresoever legacy code had/has to be used (pun intended) from within well-behaved code, it was/is done within a local block in order to circumvent the multifarious warnings that would otherwise be generated i.e.
The removal of the warnings from the legacy code can then be done in piece-meal fashion as a background task without compromising the aggressive timescales for the new code.{ no warnings; use Legacy::Module; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: "use" modules inside modules
by bogaertb (Novice) on Jun 29, 2009 at 14:15 UTC |