Skip to content

Commit ac6f8b0

Browse files
committed
removed redundant error code
1 parent 8dffd91 commit ac6f8b0

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

questdb-confstr/src/lib.rs

-2
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@ pub enum ErrorKind {
9292
BadSeparator((char, char)),
9393
IncompleteKeyValue,
9494
InvalidCharInValue(char),
95-
MissingTrailingSemicolon,
9695
DuplicateKey(String),
9796
}
9897

@@ -130,7 +129,6 @@ impl Display for ErrorKind {
130129
write!(f, "incomplete key-value pair before end of input")
131130
}
132131
ErrorKind::InvalidCharInValue(c) => write!(f, "invalid char {:?} in value", c),
133-
ErrorKind::MissingTrailingSemicolon => write!(f, "missing trailing semicolon"),
134132
ErrorKind::DuplicateKey(s) => write!(f, "duplicate key {:?}", s),
135133
}
136134
}

0 commit comments

Comments
 (0)