summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Util.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Bugzilla/Util.pm')
-rw-r--r--Bugzilla/Util.pm28
1 files changed, 1 insertions, 27 deletions
diff --git a/Bugzilla/Util.pm b/Bugzilla/Util.pm
index 6660fff91..c5cfc0444 100644
--- a/Bugzilla/Util.pm
+++ b/Bugzilla/Util.pm
@@ -35,7 +35,7 @@ use base qw(Exporter);
html_quote url_quote value_quote xml_quote
css_class_quote
i_am_cgi get_netaddr
- lsearch max min
+ lsearch
diff_arrays diff_strings
trim wrap_comment find_wrap_point
perform_substs
@@ -158,22 +158,6 @@ sub lsearch {
return -1;
}
-sub max {
- my $max = shift(@_);
- foreach my $val (@_) {
- $max = $val if $val > $max;
- }
- return $max;
-}
-
-sub min {
- my $min = shift(@_);
- foreach my $val (@_) {
- $min = $val if $val < $min;
- }
- return $min;
-}
-
sub diff_arrays {
my ($old_ref, $new_ref) = @_;
@@ -450,8 +434,6 @@ Bugzilla::Util - Generic utility functions for bugzilla
# Functions for searching
$loc = lsearch(\@arr, $val);
- $val = max($a, $b, $c);
- $val = min($a, $b, $c);
# Data manipulation
($removed, $added) = diff_arrays(\@old, \@new);
@@ -598,14 +580,6 @@ reference.
If the item is not in the list, returns -1.
-=item C<max($a, $b, ...)>
-
-Returns the maximum from a set of values.
-
-=item C<min($a, $b, ...)>
-
-Returns the minimum from a set of values.
-
=back
=head2 Data Manipulation