Browse Source

core API: from_file, from_reader

awiouy 7 years ago
parent
commit
c86f790986
1 changed files with 2 additions and 2 deletions
  1. 2 2
      core/src/authentication.rs

+ 2 - 2
core/src/authentication.rs

@@ -121,14 +121,14 @@ impl Credentials {
         }
     }
 
-    pub fn from_reader<R: Read>(mut reader: R) -> Credentials {
+    fn from_reader<R: Read>(mut reader: R) -> Credentials {
         let mut contents = String::new();
         reader.read_to_string(&mut contents).unwrap();
 
         serde_json::from_str(&contents).unwrap()
     }
 
-    pub fn from_file<P: AsRef<Path>>(path: P) -> Option<Credentials> {
+    pub(crate) fn from_file<P: AsRef<Path>>(path: P) -> Option<Credentials> {
         File::open(path).ok().map(Credentials::from_reader)
     }