Remove some dead code

Signed-off-by: Francis Bouvier <francis@lightpanda.io>
This commit is contained in:
Francis Bouvier
2024-10-16 14:53:50 +02:00
parent 7bc7da5499
commit 2311765289
2 changed files with 0 additions and 6 deletions

View File

@@ -73,10 +73,6 @@ pub const Browser = struct {
self.session.deinit(); self.session.deinit();
try Session.init(&self.session, alloc, loop, uri); try Session.init(&self.session, alloc, loop, uri);
} }
pub fn currentSession(self: *Browser) *Session {
return &self.session;
}
}; };
// Session is like a browser's tab. // Session is like a browser's tab.

View File

@@ -18,8 +18,6 @@
const std = @import("std"); const std = @import("std");
// pub const MaxStdOutSize = 512; // ensure debug msg are not too long
/// MsgBuffer returns messages from a raw text read stream, /// MsgBuffer returns messages from a raw text read stream,
/// according to the following format `<msg_size>:<msg>`. /// according to the following format `<msg_size>:<msg>`.
/// It handles both: /// It handles both: