use is_empty() to check for empty string
This commit is contained in:
parent
dd193a61d0
commit
0d97734e92
|
@ -78,7 +78,7 @@ impl SectionConfig {
|
|||
|
||||
pub fn default_parse_section_header(line: &str) -> Option<(String, String)> {
|
||||
|
||||
if line.len() == 0 { return None; };
|
||||
if line.is_empty() { return None; };
|
||||
|
||||
let first_char = line.chars().next().unwrap();
|
||||
|
||||
|
|
Loading…
Reference in New Issue