Skip to content

Commit

Permalink
Rename a local
Browse files Browse the repository at this point in the history
  • Loading branch information
swankjesse committed Mar 26, 2024
1 parent 7715907 commit 24a10e8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,7 @@ class LinkerTest {
opaqueTypes: List<ProtoType> = listOf(),
reverseSort: Boolean = false,
): Schema {
val forwardingFileSystem = when {
val schemaLoaderFileSystem = when {
reverseSort -> {
object : ForwardingFileSystem(fs) {
override fun listRecursively(dir: Path, followSymlinks: Boolean): Sequence<Path> =
Expand All @@ -532,7 +532,7 @@ class LinkerTest {
else -> fs
}

val loader = SchemaLoader(forwardingFileSystem)
val loader = SchemaLoader(schemaLoaderFileSystem)
loader.opaqueTypes = opaqueTypes
loader.initRoots(
sourcePath = listOf(Location.get("source-path")),
Expand Down

0 comments on commit 24a10e8

Please sign in to comment.