On 13 Jan 2014, at 16:14, Nicolai Hess <[email protected]> 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
> 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