about summary refs log tree commit diff
path: root/src/libstd/std.rc
diff options
context:
space:
mode:
authorErick Tryzelaar <erick.tryzelaar@gmail.com>2012-12-10 08:11:56 -0800
committerErick Tryzelaar <erick.tryzelaar@gmail.com>2012-12-19 18:16:20 -0800
commit9c673b246c69d1cdcffbaf0e5cf012941b0b78e2 (patch)
tree98d1955c2cc1318f522eac4ec848f190ce5302e5 /src/libstd/std.rc
parent6742c982a46fb9fcad190d6b9c2c2fc1370a354b (diff)
downloadrust-9c673b246c69d1cdcffbaf0e5cf012941b0b78e2.tar.gz
rust-9c673b246c69d1cdcffbaf0e5cf012941b0b78e2.zip
Remove the old serialization code
Closes #3713.
Diffstat (limited to 'src/libstd/std.rc')
-rw-r--r--src/libstd/std.rc6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/libstd/std.rc b/src/libstd/std.rc
index 918781cffb5..eb3a7410828 100644
--- a/src/libstd/std.rc
+++ b/src/libstd/std.rc
@@ -30,7 +30,7 @@ not required in or otherwise suitable for the core library.
 
 #[allow(vecs_implicitly_copyable)];
 #[deny(non_camel_case_types)];
-// XXX this is set to allow because there are two methods in serialization
+// XXX this is set to allow because there are two methods in encoding
 // that can't be silenced otherwise. Most every module is set to forbid
 #[allow(deprecated_mode)];
 #[forbid(deprecated_pattern)];
@@ -107,8 +107,6 @@ mod unicode;
 
 pub mod test;
 pub mod serialize;
-#[cfg(stage0)]
-pub mod serialization;
 
 // A curious inner-module that's not exported that contains the binding
 // 'std' so that macro-expanded references to std::serialize and such
@@ -116,8 +114,6 @@ pub mod serialization;
 #[doc(hidden)] // FIXME #3538
 mod std {
     pub use serialize;
-    #[cfg(stage0)]
-    pub use serialization;
 }
 
 // Local Variables: