fb16dfecae
Commit b7f05445c0
has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner)
14 lines
320 B
Text
14 lines
320 B
Text
Unloads the given class by clearing out its symbol table and removing
|
|
it from %INC.
|
|
|
|
SYNOPSIS
|
|
|
|
use Class::Unload;
|
|
use Class::Inspector;
|
|
|
|
use Some::Class;
|
|
|
|
Class::Unload->unload( 'Some::Class' );
|
|
Class::Inspector->loaded( 'Some::Class' ); # Returns false
|
|
|
|
require Some::Class; # Reloads the class
|