From 2e5bcc399b1fccc086e92600129b358584347085 Mon Sep 17 00:00:00 2001 From: jordanmontt Date: Tue, 24 Oct 2023 22:03:10 +0200 Subject: [PATCH] Removed dead class --- .../IllFinalizationRegistry.class.st | 24 ------------------- 1 file changed, 24 deletions(-) delete mode 100644 src/IllimaniProfiler/IllFinalizationRegistry.class.st diff --git a/src/IllimaniProfiler/IllFinalizationRegistry.class.st b/src/IllimaniProfiler/IllFinalizationRegistry.class.st deleted file mode 100644 index 3c30458..0000000 --- a/src/IllimaniProfiler/IllFinalizationRegistry.class.st +++ /dev/null @@ -1,24 +0,0 @@ -Class { - #name : 'IllFinalizationRegistry', - #superclass : 'FinalizationRegistry', - #category : 'IllimaniProfiler-Finalization-Profiler', - #package : 'IllimaniProfiler', - #tag : 'Finalization-Profiler' -} - -{ #category : 'profiling' } -IllFinalizationRegistry >> finalizeAllEphemerons [ - - | node | - node := ephemeronListHead next. - [ node isNotNil ] whileTrue: [ - node value finalize: node key. - node := node next ] -] - -{ #category : 'finalization' } -IllFinalizationRegistry >> finalizeEphemeron: anEphemeron [ - - self removeEphemeron: anEphemeron. - errorHandler handleErrorsDuring: [ anEphemeron value finalize: anEphemeron key ] -]