The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Log::Unrotate::Cursor::Null;
{
  $Log::Unrotate::Cursor::Null::VERSION = '1.32';
}

use strict;
use warnings;

=head1 NAME

Log::Unrotate::Cursor::Null - dummy unrotate cursor

=head1 VERSION

version 1.32

=head1 DESCRIPTION

This is a dummy cursor, commits to it go nowhere.

=head1 METHODS

=over

=cut

use base qw(Log::Unrotate::Cursor);

use overload '""' => sub { 'Null' };

=item B<new()>

Create a null cursor.

=cut
sub new {
    return bless {} => shift;
}

=back

=cut

sub read { return }
sub commit { return }
sub clean { return }

1;