_drc_engine.rb: replace removed method "file.exists?" with "file.exist?"

`file.exists?` got removed in version 3.2.0
see: https://www.ruby-lang.org/en/news/2022/12/25/ruby-3-2-0-released/
This commit is contained in:
VFLC 2024-05-18 15:25:07 +00:00 committed by GitHub
parent 48b32733c2
commit 70104b5fa5
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)