Merge pull request #1711 from BWsix/replace-removed-ruby-function

Replace "removed" Ruby method "file.exists?" with "file.exist?"
This commit is contained in:
Matthias Köfferlein 2024-05-18 18:41:52 +02:00 committed by GitHub
commit 879239d841
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@ module DRC
# Apply waive DB if possible
wdb_file = rdb_file + ".w"
if File.exists?(wdb_file)
if File.exist?(wdb_file)
begin
wdb = RBA::ReportDatabase::new
wdb.load(wdb_file)