From 735bf4dfe43a94898d20f44d26a1f12924dacce9 Mon Sep 17 00:00:00 2001 From: Alexander Koval Date: Sat, 23 Apr 2016 13:18:48 +0300 Subject: [PATCH] Make system and version temporarilly private --- src/read.rs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/read.rs b/src/read.rs index 3ff2881f..5b88966a 100644 --- a/src/read.rs +++ b/src/read.rs @@ -289,11 +289,13 @@ impl<'a> ZipFile<'a> { } } /// Get compatibility of the file attribute information - pub fn system(&self) -> System { + #[allow(dead_code)] + fn system(&self) -> System { self.data.system } /// Get the version of the file - pub fn version(&self) -> u8 { + #[allow(dead_code)] + fn version(&self) -> u8 { self.data.version } /// Get the name of the file @@ -320,7 +322,7 @@ impl<'a> ZipFile<'a> { pub fn last_modified(&self) -> ::time::Tm { self.data.last_modified_time } - /// Get mode for the file + /// Get unix mode for the file pub fn unix_mode(&self) -> Option { match self.data.system { System::Unix => {