This commit is contained in:
Владимир Фёдоров 2024-04-01 16:30:37 +07:00
parent 8e189e779f
commit e2041cfa27
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ import com.intellij.psi.tree.IElementType
class SJsonTokenType(debugName: String) : IElementType(debugName, SJsonLanguage.INSTANCE) {
override fun toString(): String {
return "SimpleTokenType." + super.toString();
return "SimpleTokenType." + super.toString()
}
}