pkstrings: Remove uneeded assignation

Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
Maxime “pep” Buquet 2020-07-06 00:17:34 +02:00
parent 62a9e24b97
commit ed9c806096
Signed by: pep
GPG key ID: DEDA74AEECA9D0F2

View file

@ -21,7 +21,7 @@ use std::ops::Deref;
lazy_static! {
static ref STRTOHEX: HashMap<char, u8> = {
let tmp = [
[
('A', 0x80),
('B', 0x81),
('C', 0x82),
@ -106,9 +106,7 @@ lazy_static! {
('9', 0xff),
(' ', 0x7f),
('@', 0x50),
];
tmp.iter().copied().collect()
].iter().copied().collect()
};
static ref HEXTOSTR: Vec<Option<char>> = {
let tmp = [