Skip to content

Commit

Permalink
small optimization
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Aug 19, 2012
1 parent 619e9c7 commit 58863ef
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
8 changes: 4 additions & 4 deletions Changes
@@ -1,9 +1,9 @@

3.32 2012-08-19
- Added event sequentialization support to Mojo::IOLoop::Delay.
3.32 2012-08-20
- Added event sequentialization support to delay method in Mojo::IOLoop.
(judofyr, marcus, sri)
- Added support for expiration session value, which allows for more fine
grained control.
- Added support for expiration session value to Mojolicious::Sessions.
- Added steps method to Mojo::IOLoop::Delay. (judofyr, marcus, sri)
- Added tap method to Mojo::Base.
- Added squish method to Mojo::ByteStream.
- Added squish function to Mojo::Util.
Expand Down
1 change: 0 additions & 1 deletion lib/Mojo/Util.pm
Expand Up @@ -310,7 +310,6 @@ sub unquote {
sub url_escape {
my ($string, $pattern) = @_;
$pattern ||= '^A-Za-z0-9\-._~';
return $string unless $string =~ /[$pattern]/;
$string =~ s/([$pattern])/sprintf('%%%02X',ord($1))/ge;
return $string;
}
Expand Down

0 comments on commit 58863ef

Please sign in to comment.