Skip to content

Commit fd04a66

Browse files
committed
renamed method
1 parent a01e7c9 commit fd04a66

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/MuTalk-Model/MTAnalysis.class.st

+3-3
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ MTAnalysis >> generateCoverageAnalysis [
130130
MTAnalysis >> generateMutations [
131131

132132
^ mutations ifNil: [
133-
logger logStartMutationGeneration: self methodSize.
133+
logger logStartMutationGeneration: self methodsCount.
134134
mutations := mutantGenerationStrategy
135135
mutationsFor: self
136136
loggingIn: logger.
@@ -208,8 +208,8 @@ MTAnalysis >> logger: anObject [
208208
logger := anObject
209209
]
210210

211-
{ #category : 'as yet unclassified' }
212-
MTAnalysis >> methodSize [
211+
{ #category : 'accessing' }
212+
MTAnalysis >> methodsCount [
213213

214214
^ (self modelClasses flatCollect: #methods) size
215215
]

0 commit comments

Comments
 (0)