From c22ed01a86433c89f3b0075703a00653d1dbc0fd Mon Sep 17 00:00:00 2001 From: Daniel Berteaud Date: Fri, 19 Jun 2015 16:16:54 +0200 Subject: [PATCH] get_mtime isn't needed anymore --- vroom.pl | 9 --------- 1 file changed, 9 deletions(-) diff --git a/vroom.pl b/vroom.pl index f1f5322..fae091e 100755 --- a/vroom.pl +++ b/vroom.pl @@ -474,15 +474,6 @@ helper get_random_name => sub { return $name; }; -# Return the mtime of a file -# Used to append the timestamp to JS and CSS files -# So client can get new version immediatly -helper get_mtime => sub { - my $self = shift; - my ($file) = @_; - return stat($file)->mtime; -}; - # Add an email address to the list of notifications helper add_notification => sub { my $self = shift;