'From Squeak3.7alpha of ''11 September 2003'' [latest update: #5595] on 4 December 2003 at 1:32:37 pm'! "Change Set: SomeSmplCleanups-md Date: 3 December 2003 Author: Marcus Denker This Changeset -> moves LRU-Cache to System-Support -> removes empty category Utilities -> removes empty category System-Exceptions Tests"! Object subclass: #LRUCache instanceVariableNames: 'size factory calls hits values' classVariableNames: '' poolDictionaries: '' category: 'System-Support'! "Postscript:" SystemOrganization removeCategoriesMatching: 'Utilities'. SystemOrganization removeCategoriesMatching: 'System-Exceptions Tests'. !