From bc1504c794018bd8e06adf23cf334c406aa752d9 Mon Sep 17 00:00:00 2001 From: Sam Atkins Date: Fri, 27 Jan 2023 17:09:03 +0000 Subject: [PATCH] LibPDF: Remove declarations for non-existent methods --- 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 55f81e9302..df80e76a49 100644 --- a/Userland/Libraries/LibPDF/Fonts/PS1FontProgram.h +++ b/Userland/Libraries/LibPDF/Fonts/PS1FontProgram.h @@ -23,8 +23,6 @@ public: static PDFErrorOr> create(ReadonlyBytes const&, RefPtr, size_t cleartext_length, size_t encrypted_length); private: - Gfx::AffineTransform glyph_transform_to_device_space(Glyph const&, float width) const; - PDFErrorOr parse_encrypted_portion(ByteBuffer const&); PDFErrorOr> parse_subroutines(Reader&) const; static PDFErrorOr> parse_number_array(Reader&, size_t length);