Skip to content

Commit

Permalink
Merge pull request #66 from intuit/fix_ci
Browse files Browse the repository at this point in the history
Fix ci - tests failed due to "PluginException - Cannot distinguish StubFileElementTypes"
  • Loading branch information
HilaG authored Jun 24, 2024
2 parents 882fbc7 + b046818 commit e2167de
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,8 @@ package name.kropp.intellij.makefile
import com.intellij.psi.stubs.PsiFileStub
import com.intellij.psi.tree.IStubFileElementType

class MakefileStubFileElementType : IStubFileElementType<PsiFileStub<MakefileFile>>(MakefileLanguage)
class MakefileStubFileElementType : IStubFileElementType<PsiFileStub<MakefileFile>>(MakefileLanguage) {
override fun getExternalId(): String {
return "makefile.FILE"
}
}

0 comments on commit e2167de

Please sign in to comment.