Remove all trailing whitespace
[gitmo/Moose.git] / lib / Class / MOP / Deprecated.pm
1 package Class::MOP::Deprecated;
2
3 use strict;
4 use warnings;
5
6 use Package::DeprecationManager -deprecations => {
7 };
8
9 1;
10
11 # ABSTRACT: Manages deprecation warnings for Class::MOP
12
13 __END__
14
15 =pod
16
17 =head1 DESCRIPTION
18
19     use Class::MOP::Deprecated -api_version => $version;
20
21 =head1 FUNCTIONS
22
23 This module manages deprecation warnings for features that have been
24 deprecated in Class::MOP.
25
26 If you specify C<< -api_version => $version >>, you can use deprecated features
27 without warnings. Note that this special treatment is limited to the package
28 that loads C<Class::MOP::Deprecated>.
29
30 =cut