From f06de0fa07948f6cdcc9902c2b43187290264957 Mon Sep 17 00:00:00 2001 From: Rodrigo Tobar Date: Sun, 15 Jan 2023 11:31:46 +0800 Subject: [PATCH] LibPDF: Remove unused member --- Userland/Libraries/LibPDF/Fonts/PS1FontProgram.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/Userland/Libraries/LibPDF/Fonts/PS1FontProgram.h b/Userland/Libraries/LibPDF/Fonts/PS1FontProgram.h index b1980c1a6a..55f81e9302 100644 --- a/Userland/Libraries/LibPDF/Fonts/PS1FontProgram.h +++ b/Userland/Libraries/LibPDF/Fonts/PS1FontProgram.h @@ -35,8 +35,6 @@ private: static PDFErrorOr decrypt(ReadonlyBytes const&, u16 key, size_t skip); static bool seek_name(Reader&, DeprecatedString const&); - Vector m_character_names; - u16 m_encryption_key { 4330 }; int m_lenIV { 4 }; };