summaryrefslogtreecommitdiff
path: root/lib/Class/MakeMethods/Template/Static.pm
diff options
context:
space:
mode:
authorAndreas Brachold <vdr07@deltab.de>2007-11-10 17:53:53 +0000
committerAndreas Brachold <vdr07@deltab.de>2007-11-10 17:53:53 +0000
commitcfdd733c17cfa4f1a43b827a656e9e53cc2524ac (patch)
treeb6f659b1281f77628b36768f0888f67b65f9ca48 /lib/Class/MakeMethods/Template/Static.pm
parent9c6c30350161efd74faa3c3705096aecb71c0e81 (diff)
downloadxxv-cfdd733c17cfa4f1a43b827a656e9e53cc2524ac.tar.gz
xxv-cfdd733c17cfa4f1a43b827a656e9e53cc2524ac.tar.bz2
* Remove unsed packages
* Reorder exit routines
Diffstat (limited to 'lib/Class/MakeMethods/Template/Static.pm')
-rw-r--r--lib/Class/MakeMethods/Template/Static.pm41
1 files changed, 0 insertions, 41 deletions
diff --git a/lib/Class/MakeMethods/Template/Static.pm b/lib/Class/MakeMethods/Template/Static.pm
deleted file mode 100644
index 4dfccca..0000000
--- a/lib/Class/MakeMethods/Template/Static.pm
+++ /dev/null
@@ -1,41 +0,0 @@
-package Class::MakeMethods::Template::Static;
-
-use Class::MakeMethods::Template::Global '-isasubclass';
-
-$VERSION = 1.008;
-
-1;
-
-__END__
-
-=head1 NAME
-
-Class::MakeMethods::Template::Static - Deprecated name for Global
-
-=head1 SYNOPSIS
-
- package MyObject;
- use Class::MakeMethods::Template::Global (
- scalar => [ 'foo' ]
- );
-
- package main;
-
- MyObject->foo('bar')
- print MyObject->foo();
- ...
- print $my_instance->foo(); # same thing
-
-=head1 DESCRIPTION
-
-Earlier versions of this package included a package named Class::MakeMethods::Template::Static.
-
-However, in hindsight, this name was poorly chosen, as it suggests a constant, unchanging value, whereas the actual functionality is akin to traditional "global" variables.
-
-This functionality is now provided by Class::MakeMethods::Template::Global, of which this is an empty subclass retained to provide backwards compatibility.
-
-=head1 SEE ALSO
-
-L<Class::MakeMethods::Template::Global>.
-
-=cut \ No newline at end of file