summaryrefslogtreecommitdiff
path: root/ext/Test-Harness/lib/TAP/Base.pm
diff options
context:
space:
mode:
Diffstat (limited to 'ext/Test-Harness/lib/TAP/Base.pm')
-rw-r--r--ext/Test-Harness/lib/TAP/Base.pm16
1 files changed, 4 insertions, 12 deletions
diff --git a/ext/Test-Harness/lib/TAP/Base.pm b/ext/Test-Harness/lib/TAP/Base.pm
index 25d4ce2e43..762d93daf1 100644
--- a/ext/Test-Harness/lib/TAP/Base.pm
+++ b/ext/Test-Harness/lib/TAP/Base.pm
@@ -9,15 +9,16 @@ use TAP::Object;
=head1 NAME
-TAP::Base - Base class that provides common functionality to L<TAP::Parser> and L<TAP::Harness>
+TAP::Base - Base class that provides common functionality to L<TAP::Parser>
+and L<TAP::Harness>
=head1 VERSION
-Version 3.14
+Version 3.16
=cut
-$VERSION = '3.14';
+$VERSION = '3.16';
my $GOT_TIME_HIRES;
@@ -51,17 +52,8 @@ C<TAP::Base> provides callback management.
=head2 Class Methods
-=head3 C<new>
-
=cut
-sub new {
- my ( $class, $arg_for ) = @_;
-
- my $self = bless {}, $class;
- return $self->_initialize($arg_for);
-}
-
sub _initialize {
my ( $self, $arg_for, $ok_callback ) = @_;