Skip to content

Commit

Permalink
fix scalafmt
Browse files Browse the repository at this point in the history
  • Loading branch information
khemrajrathore committed Dec 20, 2024
1 parent 4a975bb commit 4acebcf
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ object GraphSchema extends flatgraph.Schema {
"UNKNOWN"
)
val nodeKindByLabel = nodeLabels.zipWithIndex.toMap
val edgeLabels = Array(
val edgeLabels: Array[String] = Array(
"ALIAS_OF",
"ARGUMENT",
"AST",
Expand Down Expand Up @@ -236,7 +236,7 @@ object GraphSchema extends flatgraph.Schema {
size => new Array[flatgraph.GNode](size),
size => new Array[flatgraph.GNode](size)
)
val normalNodePropertyNames = Array(
val normalNodePropertyNames: Array[String] = Array(
"ALIAS_TYPE_FULL_NAME",
"ARGUMENT_INDEX",
"ARGUMENT_NAME",
Expand Down

0 comments on commit 4acebcf

Please sign in to comment.