diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2014-10-16 18:14:49 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2014-10-16 18:14:49 +0200 |
commit | 94ffb7a9fb63cf16805b7c627d1914b499960088 (patch) | |
tree | 188ac1e453a818cd9e906e53cbb1d23df8d360f2 /Bugzilla/Config | |
parent | 7ce5b04d20684101748812cf2bd5e7d6275bd5e7 (diff) | |
download | bugzilla-94ffb7a9fb63cf16805b7c627d1914b499960088.tar.gz bugzilla-94ffb7a9fb63cf16805b7c627d1914b499960088.tar.xz |
Bug 1068494: Remove CVS/Bonsai/LXR-specific bits of Patch Viewer
r=gerv a=glob
Diffstat (limited to 'Bugzilla/Config')
-rw-r--r-- | Bugzilla/Config/PatchViewer.pm | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/Bugzilla/Config/PatchViewer.pm b/Bugzilla/Config/PatchViewer.pm deleted file mode 100644 index d090c1ee6..000000000 --- a/Bugzilla/Config/PatchViewer.pm +++ /dev/null @@ -1,53 +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::Config::PatchViewer; - -use 5.10.1; -use strict; -use warnings; - -use Bugzilla::Config::Common; - -our $sortkey = 1300; - -sub get_param_list { - my $class = shift; - my @param_list = ( - { - name => 'cvsroot', - type => 't', - default => '', - }, - - { - name => 'cvsroot_get', - type => 't', - default => '', - }, - - { - name => 'bonsai_url', - type => 't', - default => '' - }, - - { - name => 'lxr_url', - type => 't', - default => '' - }, - - { - name => 'lxr_root', - type => 't', - default => '', - } ); - return @param_list; -} - -1; |