aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorEdward Barnard2015-12-25 20:45:06 +0000
committerEdward Barnard2015-12-26 19:36:19 +0000
commit0ec05856dab205db2a874dc45340f8b522bd7634 (patch)
tree708e1a76b5148ffc7813286432ff642ddd8fc3b0 /src/lib.rs
parent261510a0c61da1afbbb4c5876023e2210fc60901 (diff)
downloadrust-plist-0ec05856dab205db2a874dc45340f8b522bd7634.tar.bz2
Kill StartPlist and EndPlist
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 67287cd..cfba7c8 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -167,10 +167,6 @@ impl Plist {
/// ```
#[derive(Clone, Debug, PartialEq)]
pub enum PlistEvent {
- // TODO: Kill these. They're unnecessary.
- StartPlist,
- EndPlist,
-
// While the length of an array or dict cannot be feasably greater than max(usize) this better
// conveys the concept of an effectively unbounded event stream.
StartArray(Option<u64>),