Browse Source

core API: SessionWeak.try_upgrade(), SessionWeak.upgrade()

awiouy 7 years ago
parent
commit
55f27a9e0a
1 changed files with 2 additions and 2 deletions
  1. 2 2
      core/src/session.rs

+ 2 - 2
core/src/session.rs

@@ -213,11 +213,11 @@ impl Session {
 pub struct SessionWeak(pub Weak<SessionInternal>);
 
 impl SessionWeak {
-    pub fn try_upgrade(&self) -> Option<Session> {
+    fn try_upgrade(&self) -> Option<Session> {
         self.0.upgrade().map(Session)
     }
 
-    pub fn upgrade(&self) -> Session {
+    pub(crate) fn upgrade(&self) -> Session {
         self.try_upgrade().expect("Session died")
     }
 }