Skip to content

Commit

Permalink
no need to mention monotonic clocks
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Mar 14, 2013
1 parent 49fddaf commit 5b1a2d8
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Changes
@@ -1,5 +1,5 @@

3.90 2013-03-13
3.90 2013-03-14
- Added direct array access for parsed parameters to Mojo::Parameters.
- Added direct array access for path parts to Mojo::Path.
- Improved dumper helper to sort hash keys.
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojo/Headers.pm
Expand Up @@ -138,7 +138,7 @@ sub to_hash {
sub to_string {
my $self = shift;

# Format multiline values
# Make sure multiline values are formatted correctly
my @headers;
for my $name (@{$self->names}) {
push @headers, "$name: " . join("\x0d\x0a ", @$_) for $self->header($name);
Expand Down
2 changes: 0 additions & 2 deletions lib/Mojo/IOLoop.pm
Expand Up @@ -267,8 +267,6 @@ sub _stream {
# Connect stream with reactor
$self->{connections}{$id}{stream} = $stream;
weaken $stream->reactor($self->reactor)->{reactor};

# Start streaming
weaken $self;
$stream->on(close => sub { $self->{connections}{$id}{finish} = 1 });
$stream->start;
Expand Down
4 changes: 1 addition & 3 deletions lib/Mojo/Reactor/Poll.pm
Expand Up @@ -145,9 +145,7 @@ Mojo::Reactor::Poll - Low level event reactor with poll support
=head1 DESCRIPTION
L<Mojo::Reactor::Poll> is a low level event reactor based on L<IO::Poll>. Note
that this reactor was designed for maximum portability, and therefore does not
use a monotonic clock to handle time jumps.
L<Mojo::Reactor::Poll> is a low level event reactor based on L<IO::Poll>.
=head1 EVENTS
Expand Down

0 comments on commit 5b1a2d8

Please sign in to comment.