mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-12-25 12:27:58 +01:00
Make Depth constructor private
This commit is contained in:
parent
af00a04cc0
commit
0d45363c18
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@ package org.pgpainless.wot.dijkstra.sq
|
||||||
/**
|
/**
|
||||||
* Depth of a trust signature.
|
* Depth of a trust signature.
|
||||||
*/
|
*/
|
||||||
class Depth(val limit: Int?) : Comparable<Depth> {
|
class Depth private constructor(val limit: Int?) : Comparable<Depth> {
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue