when I dropped a CS on pharo 30 I get
classReorganized: anAnnouncement window ifNil: [ ^ self ]. window isDisplayed ifFalse: [ ^ self ]. (self selectedClass = anAnnouncement classReorganized or: [ anAnnouncement classReorganized users includes: self selectedClass ]) ^^^^^^^^^^^^^^^^^^^^ PseudoClass does not understand users? ifTrue: [ self updateBothView ]
I fixed it and I will produce a bug entry + slice On Oct 13, 2013, at 7:00 PM, Stéphane Ducasse <Stephane.Ducasse@inria.fr> wrote:
classReorganized: anAnnouncement
window ifNil: [ ^ self ]. window isDisplayed ifFalse: [ ^ self ]. (self selectedClass = anAnnouncement classReorganized or: [ anAnnouncement classReorganized users includes: self selectedClass ]) ^^^^^^^^^^^^^^^^^^^^ PseudoClass does not understand users?
ifTrue: [ self updateBothView ]
What is a "CS" ? -- View this message in context: http://forum.world.st/when-I-dropped-a-CS-on-pharo-30-I-get-tp4714191p471428... Sent from the Pharo Smalltalk Developers mailing list archive at Nabble.com.
On Oct 14, 2013, at 12:25 PM, kilon <thekilon@yahoo.co.uk> wrote:
What is a "CS" ?
changeset. There is a subsystem that record all changed method, allows you to sort them in groups and "file out" sets of those changes in .cs files. This was how people worked together in th past, today it is still useful for deep crosscutting changes (as you can hand-order the .cs text file if needed) Marcus
Thanks for the explanation. I was aware of change sets, I have read about them in PBE though never used them myself. Looks like a interesting concept will take a deeper look later on :) Marcus Denker-4 wrote
On Oct 14, 2013, at 12:25 PM, kilon <
thekilon@.co
> wrote:
What is a "CS" ?
changeset.
There is a subsystem that record all changed method, allows you to sort them in groups and "file out" sets of those changes in .cs files. This was how people worked together in th past, today it is still useful for deep crosscutting changes (as you can hand-order the .cs text file if needed)
Marcus
signature.asc (210 bytes) <http://forum.world.st/attachment/4714291/0/signature.asc>
-- View this message in context: http://forum.world.st/when-I-dropped-a-CS-on-pharo-30-I-get-tp4714191p471430... Sent from the Pharo Smalltalk Developers mailing list archive at Nabble.com.
participants (3)
-
kilon -
Marcus Denker -
Stéphane Ducasse