1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2024-09-27 18:19:34 +02:00

Path: Allow public get access for root and residualDepth

This commit is contained in:
Heiko Schaefer 2023-07-06 15:13:51 +02:00
parent 218990c3fe
commit bc078b754d
No known key found for this signature in database
GPG key ID: 4A849A1904CCBD7D

View file

@ -15,9 +15,9 @@ import kotlin.math.min
* @param residualDepth residual depth that is decreased each time another edge is appended
*/
class Path(
private val root: CertSynopsis,
val root: CertSynopsis,
private val edges: MutableList<Certification>,
private var residualDepth: Depth
var residualDepth: Depth
) {
/**