Bug 12600: remove duplicate use statement from code
authorColin Campbell <colin.campbell@ptfs-europe.com>
Fri, 18 Jul 2014 08:50:34 +0000 (09:50 +0100)
committerTomas Cohen Arazi <tomascohen@gmail.com>
Sun, 10 Aug 2014 12:32:12 +0000 (09:32 -0300)
commit571a2567da5c428d454b8d965dae9a35ef05e868
tree40334efd6d641e307eefa290eae10939a0949571
parent0ddeabd3d4b4914c7698da03f5e036f2ec08638d
Bug 12600: remove duplicate use statement from code

A use C4::Charset was added deep in the body of the code
we have already imported it at the top of the file
(the by convention normal place) As use is executed at compile time
specifying it in the code body does not serve a
useful purpose and detracts from the readability of an already
overly complex subroutine.
Remove the superfluous statement
also removed the tabs introduced to the surrounding lines
by the same commit

Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel@gmail.com>
Search still works, no errors.

Signed-off-by: Katrin Fischer <Katrin.Fischer.83@web.de>
Signed-off-by: Tomas Cohen Arazi <tomascohen@gmail.com>
C4/Search.pm