1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2024-12-24 03:47:57 +01: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 committed by Paul Schaub
parent 31e7704f89
commit e08ad71117
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311

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
) {
/**