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