From 47453b4eb130d8528af319512d774f620e9cce95 Mon Sep 17 00:00:00 2001 From: David Warring Date: Sat, 12 Oct 2024 09:20:56 +1300 Subject: [PATCH] Add Loader.pdf-class() method To override inherited method from PDF core. --- lib/PDF/Lite.rakumod | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/PDF/Lite.rakumod b/lib/PDF/Lite.rakumod index 860e67d..8f40534 100644 --- a/lib/PDF/Lite.rakumod +++ b/lib/PDF/Lite.rakumod @@ -114,6 +114,7 @@ class PDF::Lite:ver<0.0.14> { multi method load-delegate(Hash :$dict! where { from-ast($_) == 1 with . }) { Tiling-Pattern } + method pdf-class { PDF::Lite } } PDF::COS.loader = Loader;