Skip to content

Commit

Permalink
fix a private var
Browse files Browse the repository at this point in the history
Signed-off-by: Joseph Mattiello <git@joemattiello.com>
  • Loading branch information
JoeMatt committed Dec 2, 2024
1 parent 519c075 commit 87aaaea
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions PVLibrary/Sources/PVLibrary/Database/PVGameLibrary.swift
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ public class PVGameLibrary<T> where T: DatabaseDriver {
public let sortedGames: [T.GameType]
}

internal let database: RomDatabase
internal let databaseDriver: T
private let romMigrator: ROMLocationMigrator
public let database: RomDatabase
public let databaseDriver: T
public let romMigrator: ROMLocationMigrator

public init(database: RomDatabase) {
self.database = database
Expand Down

0 comments on commit 87aaaea

Please sign in to comment.