Skip to content

Commit 3c2efde

Browse files
authored
Merge pull request #755 from moosetechnology/fix-loading
Fix loading problem of Famix
2 parents 95560c4 + 5af5129 commit 3c2efde

File tree

3 files changed

+7
-18
lines changed

3 files changed

+7
-18
lines changed

src/BaselineOfFamix/BaselineOfFamix.class.st

+7-6
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,12 @@ Class {
1313
#category : #BaselineOfFamix
1414
}
1515

16-
{ #category : #baseline }
16+
{ #category : #baselines }
1717
BaselineOfFamix >> baseline: spec [
18+
"In P12 the need of this hack got removed and now Metacello is able to give us the URL itself. Once P11 will not be maintained for Moose we can remove this check and the method #packageRepositoryURL we are overriding."
1819

1920
<baseline>
20-
"In P12 the need of this hack got removed and now Metacello is able to give us the URL itself. Once P11 will not be maintained for Moose we can remove this check and the method #packageRepositoryURL we are overriding."
21+
<ignoreNotImplementedSelectors: #( #packageRepositoryURLForSpec: )>
2122
repository := SystemVersion current major < 12
2223
ifTrue: [ self packageRepositoryURL ]
2324
ifFalse: [ self packageRepositoryURLForSpec: spec ].
@@ -46,7 +47,7 @@ BaselineOfFamix >> deepTraverser: spec [
4647
repository: 'github://pharo-contributions/DeepTraverser:v1.x.x/src' ]
4748
]
4849

49-
{ #category : #baseline }
50+
{ #category : #baselines }
5051
BaselineOfFamix >> dependencies: spec [
5152

5253
self
@@ -61,7 +62,7 @@ BaselineOfFamix >> dependencies: spec [
6162
self fame: spec
6263
]
6364

64-
{ #category : #baseline }
65+
{ #category : #dependencies }
6566
BaselineOfFamix >> fame: spec [
6667

6768
"We load Fame development version for new Moose images."
@@ -76,7 +77,7 @@ BaselineOfFamix >> fame: spec [
7677
('github://moosetechnology/Fame:{1}/src' format: { version }) ]
7778
]
7879

79-
{ #category : #baseline }
80+
{ #category : #baselines }
8081
BaselineOfFamix >> groups: spec [
8182

8283
^ spec
@@ -146,7 +147,7 @@ BaselineOfFamix >> packageRepositoryURL [
146147
ifNone: [ '' ]) ]
147148
]
148149

149-
{ #category : #baseline }
150+
{ #category : #baselines }
150151
BaselineOfFamix >> packages: spec [
151152

152153
spec

src/Famix-Java-Visitor/FamixJavaUnknownSourceLanguage.extension.st

-6
This file was deleted.

src/Famix-Java-Visitor/FamixJavaVisitor.trait.st

-6
Original file line numberDiff line numberDiff line change
@@ -227,12 +227,6 @@ FamixJavaVisitor >> visitType: aFamixJavaType [
227227
^ self visitContainerEntity: aFamixJavaType
228228
]
229229

230-
{ #category : #visiting }
231-
FamixJavaVisitor >> visitUnknownSourceLanguage: aFamixJavaUnknownSourceLanguage [
232-
<generated>
233-
^ self visitSourceLanguage: aFamixJavaUnknownSourceLanguage
234-
]
235-
236230
{ #category : #visiting }
237231
FamixJavaVisitor >> visitUnknownVariable: aFamixJavaUnknownVariable [
238232
<generated>

0 commit comments

Comments
 (0)