From d6dd5bb2caff0df75f98d7e6a865d5ef3df489c8 Mon Sep 17 00:00:00 2001 From: will-obrien <33824138+will-obrien@users.noreply.github.com> Date: Thu, 14 Sep 2023 17:23:12 +1000 Subject: [PATCH 1/4] Update blah.field-meta.xml --- blah.field-meta.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blah.field-meta.xml b/blah.field-meta.xml index 6fb097b4..e887fd9a 100644 --- a/blah.field-meta.xml +++ b/blah.field-meta.xml @@ -1,7 +1,7 @@ CCP_CompanyRegistrationNumber__c - Blah + false 50 From 17c145cd6beea97f9dfa85ea6bde46486c045dc2 Mon Sep 17 00:00:00 2001 From: will-obrien <33824138+will-obrien@users.noreply.github.com> Date: Tue, 19 Sep 2023 18:49:08 +1000 Subject: [PATCH 2/4] Update Puff.cls --- Puff.cls | 1 - 1 file changed, 1 deletion(-) diff --git a/Puff.cls b/Puff.cls index a9995044..324ec269 100644 --- a/Puff.cls +++ b/Puff.cls @@ -4,7 +4,6 @@ //Puff.cls based on Mark Adler's puff.c // public class Puff { - private final Integer MAXBITS = 15; /* maximum bits in a code */ private final Integer MAXLCODES = 286; /* maximum number of literal/length codes */ private final Integer MAXDCODES = 30; /* maximum number of distance codes */ private final Integer MAXCODES = (MAXLCODES+MAXDCODES); /* maximum codes lengths to read */ From 19ff620d25d44fc607ac448b977dcb385e33616e Mon Sep 17 00:00:00 2001 From: will-obrien <33824138+will-obrien@users.noreply.github.com> Date: Mon, 29 Jan 2024 14:30:59 +0530 Subject: [PATCH 3/4] Update Puff.cls --- Puff.cls | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Puff.cls b/Puff.cls index 324ec269..1055ffbf 100644 --- a/Puff.cls +++ b/Puff.cls @@ -2,7 +2,7 @@ //Copyright (c) 2015 Pedro Dal Col, Pliny Smith // //Puff.cls based on Mark Adler's puff.c -// +// Kicking off analysis public class Puff { private final Integer MAXLCODES = 286; /* maximum number of literal/length codes */ private final Integer MAXDCODES = 30; /* maximum number of distance codes */ From 15e055e858635fc98ff5c8c28d612dfc9e17cf68 Mon Sep 17 00:00:00 2001 From: will-obrien <33824138+will-obrien@users.noreply.github.com> Date: Thu, 29 Feb 2024 20:17:33 +1000 Subject: [PATCH 4/4] Update Puff.cls --- Puff.cls | 1 + 1 file changed, 1 insertion(+) diff --git a/Puff.cls b/Puff.cls index 1055ffbf..60ea8b71 100644 --- a/Puff.cls +++ b/Puff.cls @@ -3,6 +3,7 @@ // //Puff.cls based on Mark Adler's puff.c // Kicking off analysis +// another trigger public class Puff { private final Integer MAXLCODES = 286; /* maximum number of literal/length codes */ private final Integer MAXDCODES = 30; /* maximum number of distance codes */