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
1 changed files with 2 additions and 2 deletions

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