move other header parse utils to util module

This commit is contained in:
Sean McArthur
2014-11-17 15:52:49 -08:00
parent f12f5fc584
commit 7e55506134
5 changed files with 34 additions and 34 deletions

View File

@@ -1,7 +1,7 @@
use header::{Header, HeaderFormat};
use std::fmt::{mod, Show};
use super::{from_comma_delimited, fmt_comma_delimited};
use std::str::FromStr;
use super::util::{from_comma_delimited, fmt_comma_delimited};
/// The `Upgrade` header.
#[deriving(Clone, PartialEq, Show)]