diff --git a/Iceberg-TipUI/IceTipBrowseRepositoryPackageVersionCommand.class.st b/Iceberg-TipUI/IceTipBrowseRepositoryPackageVersionCommand.class.st deleted file mode 100644 index 94a27379a2..0000000000 --- a/Iceberg-TipUI/IceTipBrowseRepositoryPackageVersionCommand.class.st +++ /dev/null @@ -1,30 +0,0 @@ -" -Command that opens a browser on the code of the repository. - -The current implementation relies on a monticello MCSnapshotBrowser -" -Class { - #name : 'IceTipBrowseRepositoryPackageVersionCommand', - #superclass : 'IceTipPackageCommand', - #category : 'Iceberg-TipUI-Commands', - #package : 'Iceberg-TipUI', - #tag : 'Commands' -} - -{ #category : 'accessing - defaults' } -IceTipBrowseRepositoryPackageVersionCommand class >> defaultDescription [ - - ^ 'Browse the version in the repository' -] - -{ #category : 'accessing - defaults' } -IceTipBrowseRepositoryPackageVersionCommand class >> defaultName [ - - ^ 'Browse this version in Monticello' -] - -{ #category : 'executing' } -IceTipBrowseRepositoryPackageVersionCommand >> execute [ - - self packageModel browseRepositoryVersion -] diff --git a/Iceberg-TipUI/IceTipPackageModel.class.st b/Iceberg-TipUI/IceTipPackageModel.class.st index ca593c7d26..d8a4e45a3d 100644 --- a/Iceberg-TipUI/IceTipPackageModel.class.st +++ b/Iceberg-TipUI/IceTipPackageModel.class.st @@ -28,15 +28,6 @@ IceTipPackageModel >> browsePackage [ self entity browse ] -{ #category : 'actions' } -IceTipPackageModel >> browseRepositoryVersion [ - | snapshot | - - snapshot := self entity mcSnapshotInRepository. - (MCSnapshotBrowser forSnapshot: snapshot) - showLabelled: 'Snapshot for ', self entity name -] - { #category : 'accessing' } IceTipPackageModel >> description [ | text |