@@ -74,7 +74,7 @@ internal class ScanController(
7474 /* *
7575 * A map of [KnownProvenance]s to their resolved [NestedProvenance]s.
7676 */
77- private val nestedProvenances = mutableMapOf<KnownProvenance , NestedProvenance >()
77+ private val nestedProvenances = mutableMapOf<RemoteProvenance , NestedProvenance >()
7878
7979 /* *
8080 * A map of package [Identifier]s to their resolved [KnownProvenance]s. These provenances are used to filter the
@@ -86,7 +86,7 @@ internal class ScanController(
8686 * A map of package [Identifier]s to their resolved [KnownProvenance]s with the VCS path removed. These provenances
8787 * are used during scanning to make sure that always the full repositories are scanned.
8888 */
89- private val packageProvenancesWithoutVcsPath = mutableMapOf<Identifier , KnownProvenance >()
89+ private val packageProvenancesWithoutVcsPath = mutableMapOf<Identifier , RemoteProvenance >()
9090
9191 /* *
9292 * The [ScanResult]s for each [KnownProvenance] and [ScannerWrapper].
@@ -143,7 +143,7 @@ internal class ScanController(
143143 * Set the [nestedProvenance] corresponding to the given [package provenance][root], overwriting any existing
144144 * values.
145145 */
146- fun putNestedProvenance (root : KnownProvenance , nestedProvenance : NestedProvenance ) {
146+ fun putNestedProvenance (root : RemoteProvenance , nestedProvenance : NestedProvenance ) {
147147 nestedProvenances[root] = nestedProvenance
148148 }
149149
@@ -273,7 +273,7 @@ internal class ScanController(
273273 /* *
274274 * Return all [KnownProvenance]s for the [packages] with the VCS path removed.
275275 */
276- fun getPackageProvenancesWithoutVcsPath (): Set <KnownProvenance > = packageProvenancesWithoutVcsPath.values.toSet()
276+ fun getPackageProvenancesWithoutVcsPath (): Set <RemoteProvenance > = packageProvenancesWithoutVcsPath.values.toSet()
277277
278278 /* *
279279 * Return all [PackageScannerWrapper]s.
0 commit comments