Skip to content

Commit 5d50983

Browse files
committed
FilesDb: Don't initialize with a dummy filename.
1 parent f6df567 commit 5d50983

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/filesdb.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use hashfilter::HashFilter;
55
use lazy_static::lazy_static;
66

77
lazy_static! {
8-
static ref DB: Mutex<HashFilter> = Mutex::new(HashFilter::open("incompressible.dat"));
8+
static ref DB: Mutex<HashFilter> = Mutex::new(HashFilter::default());
99
}
1010

1111
pub struct FilesDb;

0 commit comments

Comments
 (0)