5 lines
237 B
Smalltalk
5 lines
237 B
Smalltalk
accessing
|
|
messages
|
|
messages ifNil: [ ^ messages := TweetsCollection new ].
|
|
self config isEmpty ifTrue: [ ^ messages ].
|
|
^ messages select: [ :message | message created between: self reportingPeriod start and: self reportingPeriod end ] |