summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Metrics/Template.pm
diff options
context:
space:
mode:
authorDylan William Hardison <dylan@hardison.net>2018-06-29 05:26:52 +0200
committerGitHub <noreply@github.com>2018-06-29 05:26:52 +0200
commitd5f2d8158b90a55cefe126e38132e390e9fa75f5 (patch)
tree8d31e608d7bf81d919fc4b8240508a4cb1982c41 /Bugzilla/Metrics/Template.pm
parent4a15e8b3b36dcde234ef2e068d931a59e0ce1d4e (diff)
downloadbugzilla-d5f2d8158b90a55cefe126e38132e390e9fa75f5.tar.gz
bugzilla-d5f2d8158b90a55cefe126e38132e390e9fa75f5.tar.xz
Bug 1472048 - Remove Metrics Code
Diffstat (limited to 'Bugzilla/Metrics/Template.pm')
-rw-r--r--Bugzilla/Metrics/Template.pm24
1 files changed, 0 insertions, 24 deletions
diff --git a/Bugzilla/Metrics/Template.pm b/Bugzilla/Metrics/Template.pm
deleted file mode 100644
index 5d9af240e..000000000
--- a/Bugzilla/Metrics/Template.pm
+++ /dev/null
@@ -1,24 +0,0 @@
-# This Source Code Form is subject to the terms of the Mozilla Public
-# License, v. 2.0. If a copy of the MPL was not distributed with this
-# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-#
-# This Source Code Form is "Incompatible With Secondary Licenses", as
-# defined by the Mozilla Public License, v. 2.0.
-
-package Bugzilla::Metrics::Template;
-
-use 5.10.1;
-use strict;
-use warnings;
-
-use base 'Bugzilla::Template';
-
-sub process {
- my $self = shift;
- Bugzilla->metrics->template_start($_[0]);
- my $result = $self->SUPER::process(@_);
- Bugzilla->metrics->end();
- return $result;
-}
-
-1;