Skip to content

Commit

Permalink
stats in context
Browse files Browse the repository at this point in the history
  • Loading branch information
chengpohi committed Apr 3, 2024
1 parent 00aeddd commit 6c2db0a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ public EDQLTokenType(@NotNull @NonNls String debugName) {

@Override
public String toString() {
return "EQLTokenType." + super.toString();
return "EDQLTokenType." + super.toString();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ class EDQLScriptRunner(ls: Seq[URL], psiFileFactoryImpl: PsiFileFactoryImpl) ext

def getScriptFilePathFromEnv: Option[String] = {
val config: Config = ConfigFactory.load()
config.hasPath("eql.file") match {
case true => Some(config.getString("eql.file"))
config.hasPath("edql.file") match {
case true => Some(config.getString("edql.file"))
case false => None
}
}
Expand Down

0 comments on commit 6c2db0a

Please sign in to comment.