From 88a372ef7e12958ba53307a8e54fe40ab77f9fe8 Mon Sep 17 00:00:00 2001 From: Guillem Jover Date: Thu, 31 Oct 2019 19:50:05 +0100 Subject: [PATCH] TT#69200 Remove unused variable in arrayeq() Change-Id: I14e16592d83448db56de4498fc1a3b2f25aee88e (cherry picked from commit 117202701c339413ae2ede1783bf37e336a33e3d) --- lib/NGCP/BulkProcessor/Array.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/NGCP/BulkProcessor/Array.pm b/lib/NGCP/BulkProcessor/Array.pm index 883eb06..63e74b0 100644 --- a/lib/NGCP/BulkProcessor/Array.pm +++ b/lib/NGCP/BulkProcessor/Array.pm @@ -148,7 +148,7 @@ sub arrayeq { } else { $ubound2 = -1; } - my $result = 1; + if ($ubound1 != $ubound2) { return 0; } else {