Rename function: store_path_str() -> store_path()
This commit is contained in:
parent
5f4718a2e5
commit
da85c3ffe7
1 changed files with 2 additions and 2 deletions
|
@ -64,7 +64,7 @@ impl Configuration {
|
|||
self.debugging
|
||||
}
|
||||
|
||||
pub fn store_path_str(&self) -> String {
|
||||
pub fn store_path(&self) -> String {
|
||||
format!("{}{}", self.rtp, self.store_sub)
|
||||
}
|
||||
|
||||
|
@ -100,7 +100,7 @@ impl Debug for Configuration {
|
|||
self.is_verbose(),
|
||||
self.is_debugging(),
|
||||
self.get_rtp(),
|
||||
self.store_path_str()
|
||||
self.store_path()
|
||||
)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue