Closed hernanmd closed 9 months ago
IceTipInspectCommand>>item
is sending an unimplemented message.
realObject
was present in IceTipCachedModel
, but that class was removed.
Since this method is only calling super
and Iceberg cached model was deleted, it seems we could safely remove it.
This PR address two current errors reported by the Pharo CI:
The problem with the unused method
id
is therequired
message, which is not implemeted.The only user is
IceRepositoryProperties>>readerClass
. This method sendsusers
as follows:so the users could be:
which have their own implementation of
id
, answering #tonel or #filetreeThe
required
method was implemented inMetacelloMCVersionSpecLoader
as:but it is not present anymore.