core: Remove unneeded pub

This commit is contained in:
relrelb 2021-01-29 21:54:29 +02:00 committed by Mike Welsh
parent eaf0441f9a
commit 02dfb23c67
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ pub trait StorageBackend: Downcast {
impl_downcast!(StorageBackend);
pub struct MemoryStorageBackend {
pub map: HashMap<String, String>,
map: HashMap<String, String>,
}
impl Default for MemoryStorageBackend {