From dd43be4818a93fc0857d22a8c0ba6071045a4e9c Mon Sep 17 00:00:00 2001 From: Halil Durak Date: Thu, 30 Oct 2025 22:35:37 +0300 Subject: [PATCH] remove method added for testing This was only required while testing things, not an actual API. --- src/browser/file/Blob.zig | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/browser/file/Blob.zig b/src/browser/file/Blob.zig index bd1e07d2..7ac52391 100644 --- a/src/browser/file/Blob.zig +++ b/src/browser/file/Blob.zig @@ -169,10 +169,6 @@ pub fn get_size(self: *const Blob) usize { return self.slice.len; } -pub fn get_str(self: *const Blob) []const u8 { - return self.slice; -} - const testing = @import("../../testing.zig"); test "Browser: File.Blob" { try testing.htmlRunner("file/blob.html");