Skip to content

Commit 22a230d

Browse files
committed
fix(session)!: Make PtySession fields private
1 parent f1dd095 commit 22a230d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/session.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,8 +166,8 @@ impl<W: Write> StreamSession<W> {
166166
/// Interact with a process with read/write/signals, etc.
167167
#[allow(dead_code)]
168168
pub struct PtySession {
169-
pub process: PtyProcess,
170-
pub stream: StreamSession<File>,
169+
process: PtyProcess,
170+
stream: StreamSession<File>,
171171
}
172172

173173
// make StreamSession's methods available directly

0 commit comments

Comments
 (0)