From 19f7e8e1695dfa1306be1a870a7a55f21724e840 Mon Sep 17 00:00:00 2001 From: CyrilFerlicot Date: Thu, 4 Sep 2025 15:04:10 +0200 Subject: [PATCH 1/2] Remove method now present in Famix --- Moose-Blueprint-Models/FamixJavaMethod.extension.st | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Moose-Blueprint-Models/FamixJavaMethod.extension.st b/Moose-Blueprint-Models/FamixJavaMethod.extension.st index 2bd7773..1826794 100644 --- a/Moose-Blueprint-Models/FamixJavaMethod.extension.st +++ b/Moose-Blueprint-Models/FamixJavaMethod.extension.st @@ -70,12 +70,6 @@ FamixJavaMethod >> isExternal [ ^ self isPublic ] -{ #category : '*Moose-Blueprint-Models' } -FamixJavaMethod >> isInitializer [ - - ^ self isConstructor -] - { #category : '*Moose-Blueprint-Models' } FamixJavaMethod >> isInternal [ From e4a213b07393501d806ce9bcebfd47c5ee26a871 Mon Sep 17 00:00:00 2001 From: CyrilFerlicot Date: Thu, 4 Sep 2025 15:25:09 +0200 Subject: [PATCH 2/2] Trigger rebuild from CI --- Moose-Blueprint-Models/FamixTMethod.extension.st | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/Moose-Blueprint-Models/FamixTMethod.extension.st b/Moose-Blueprint-Models/FamixTMethod.extension.st index 4ee1e1e..730c57e 100644 --- a/Moose-Blueprint-Models/FamixTMethod.extension.st +++ b/Moose-Blueprint-Models/FamixTMethod.extension.st @@ -157,12 +157,10 @@ FamixTMethod >> isTestInternalImplementation [ | invocationSources | self parentType isTestCase ifFalse: [ ^ false ]. - invocationSources := self incomingInvocations collect: [ :each | - each source ]. + invocationSources := self incomingInvocations collect: #source. - ^ (invocationSources isNotEmpty and: [ - invocationSources allSatisfy: [ :i | - i parentType = self parentType ] ]) or: [ self isTestInternal ] + ^ (invocationSources isNotEmpty and: [ invocationSources allSatisfy: [ :invocationSource | invocationSource parentType = self parentType ] ]) or: [ + self isTestInternal ] ] { #category : '*Moose-Blueprint-Models' }