Skip to content

Commit

Permalink
Improvements to scalaDoc.
Browse files Browse the repository at this point in the history
  • Loading branch information
staudtMarius committed May 21, 2024
1 parent 0221c37 commit 1dbee0c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ object LvGridGeneratorSupport extends LazyLogging {
}

/** This method will reduce the graph by removing some vertices. A vertex is
* removed if its degree is < 2 and it is not defined to be kept.
* removed if its degree is <= 2 and it is not defined to be kept.
*
* @param osmGraph
* graph to reduce
Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/utils/Clustering.scala
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ final case class Clustering(

val unusedIds = newNodes.map(_.getId)
logger.info(
s"More substations than uses. Convert unused substations to normal nodes. Unused substations: $unusedIds"
s"Unused substations exists. Converted these substations to normal nodes. Unused substations: $unusedIds"
)

findClosestSubstation(updatedSubstations, others ++ newNodes)
Expand Down

0 comments on commit 1dbee0c

Please sign in to comment.