Skip to content

Commit 1f6ea05

Browse files
Automatic deprecations + removing dead code
1 parent 75e6907 commit 1f6ea05

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

Moose-Blueprint-Models/CBClassBlueprint.class.st

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,8 @@ CBClassBlueprint >> allAttributes [
6868
{ #category : 'accessing' }
6969
CBClassBlueprint >> attributeAccess [
7070

71-
^ (self allAttributes flatCollect: [:each | each attributeAccess]) reject: [ :each | each source entity isCBAccessor ].
71+
^ (self allAttributes flatCollect: [ :each | each attributeAccess ])
72+
reject: [ :each | each source entity isAccessor ]
7273
]
7374

7475
{ #category : 'accessing' }

Moose-Blueprint-Models/Class.extension.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Extension { #name : 'Class' }
33
{ #category : '*Moose-Blueprint-Models' }
44
Class >> blueprint [
55

6-
^ self blueprintView asInspectorPresenter open.
6+
^ self blueprintView open.
77
]
88

99
{ #category : '*Moose-Blueprint-Models' }

Moose-Blueprint-Models/FamixTMethod.extension.st

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ FamixTMethod >> isIfNil [
108108
{ #category : '*Moose-Blueprint-Models' }
109109
FamixTMethod >> isPureGetter [
110110

111-
^ #getter = self kind or: [ self isCBGetter ]
111+
^ #getter = self kind or: [ self isGetter ]
112112
]
113113

114114
{ #category : '*Moose-Blueprint-Models' }
@@ -175,7 +175,7 @@ FamixTMethod >> isTestMethod [
175175
FamixTMethod >> isTested [
176176

177177
^ (self incomingInvocations collect: #sender) anySatisfy: [ :each |
178-
each isTestCase ]
178+
each isTestCaseMethod ]
179179
]
180180

181181
{ #category : '*Moose-Blueprint-Models' }

0 commit comments

Comments
 (0)