We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f3f02e commit 5eab7a3Copy full SHA for 5eab7a3
mps-model-adapters/src/main/kotlin/org/modelix/model/mpsadapters/MPSLanguageRepository.kt
@@ -27,7 +27,7 @@ import org.modelix.model.api.ILanguageRepository
27
28
class MPSLanguageRepository(private val repository: SRepository) : ILanguageRepository {
29
override fun resolveConcept(uid: String): IConcept? {
30
- if (uid.startsWith("mps:")) return null
+ if (!uid.startsWith("mps:")) return null
31
32
val conceptId = try {
33
SConceptId.deserialize(uid.substring(4))
0 commit comments