Skip to content

Commit

Permalink
Graph.storagePath: make public
Browse files Browse the repository at this point in the history
  • Loading branch information
mpollmeier committed Dec 6, 2023
1 parent e9333a8 commit 46fcad8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/scala/flatgraph/Graph.scala
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ object Graph {

}

class Graph(val schema: Schema, storagePathMaybe: Option[Path] = None) extends AutoCloseable {
class Graph(val schema: Schema, val storagePathMaybe: Option[Path] = None) extends AutoCloseable {
private val nodeKindCount = schema.getNumberOfNodeKinds
private val edgeKindCount = schema.getNumberOfEdgeKinds
private val propertiesCount = schema.getNumberOfProperties
Expand Down

0 comments on commit 46fcad8

Please sign in to comment.