2014/1/13 Benjamin <benjamin.vanryseghem.pharo@gmail.com>
On 13 Jan 2014, at 16:14, Nicolai Hess <nicolaihess@web.de> wrote:
How would you make a list of methods that changed in a period of time. For example: All methods with timestamp between 01/01/2014 01/10/2014.
you can do something like: list := timestamp splitOn: â â. date := Date fromString: list second. time := Time fromString: list third. dateAndTime := DateAndTime date: date time: time
Thank you
I know that most methods have a timestamp, but this includes the author as well and I don't know how to properly parse it.
And is it possible to make a list of all deleted methods.
Have a look a RecentMessageList. It stores (or its supposed to) all the changes related to method, including deletion.
Ben
No :( Nothing in RecentMessageList, and nothing in DualChangeSorter. Wasn't it always the ChangeSorter where i can find deleted methods?