Eliot Miranda uploaded a new version of Monticello to project The Trunk:
http://source.squeak.org/trunk/Monticello-eem.737.mcz==================== Summary ====================
Name: Monticello-eem.737
Author: eem
Time: 12 April 2021, 11:31:38.465056 am
UUID: 015970f1-92a9-4e6b-b0a2-9d6deba9d725
Ancestors: Monticello-mt.736
Eliminate shadowed variable warning(s).
=============== Diff against Monticello-mt.736 ===============
Item was changed:
----- Method: MCRepositoryInspector>>save (in category 'actions') -----
save
self pickRepository ifNotNil:
+ [:repo |
+ (self repository = MCRepository inbox
+ and: [repo = MCRepository trunk or: [repo = MCRepository treated]]) ifTrue:
+ [self notify: 'Versions from the inbox should only be moved, not copied. Instead, use the web interface via source.squeak.org to manage inbox contributions.\\Do you want to proceed anyway?' translated withCRs].
+ repo storeVersion: self version]!
- [:repository |
- (self repository = MCRepository inbox and:
- [repository = MCRepository trunk or: [repository = MCRepository treated]]) ifTrue:
- [self notify: 'Versions from the inbox should only be moved, not copied. Instead, use the web interface via source.squeak.org to manage inbox contributions.\\Do you want to proceed anyway?' translated withCRs].
- repository storeVersion: self version]!