Skip to content

Commit eed3ca6

Browse files
committed
Scanner: Rename results to scanResults
Align the name with the one in ScanRecord, to slightly simplify an upcoming change. Signed-off-by: Frank Viernau <[email protected]>
1 parent f888580 commit eed3ca6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scanner/src/main/kotlin/Scanner.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -114,12 +114,12 @@ class Scanner(
114114
emptyMap()
115115
}
116116

117-
val results = (projectResults + packageResults).toSortedMap()
117+
val scanResults = (projectResults + packageResults).toSortedMap()
118118

119119
val endTime = Instant.now()
120120

121121
val scanRecord = ScanRecord(
122-
scanResults = results,
122+
scanResults = scanResults,
123123
storageStats = AccessStatistics() // TODO: Record access statistics.
124124
)
125125

0 commit comments

Comments
 (0)