From 4b0ca0a59d097ffd000c24fb274aa32dc55c6981 Mon Sep 17 00:00:00 2001 From: Philippe Pittoli Date: Wed, 1 Feb 2023 11:09:41 +0100 Subject: [PATCH] Crystal bindings: removing useless method. --- zig-impl/crystal/some-crystal-app/src/high-level-bindings.cr | 4 ---- 1 file changed, 4 deletions(-) diff --git a/zig-impl/crystal/some-crystal-app/src/high-level-bindings.cr b/zig-impl/crystal/some-crystal-app/src/high-level-bindings.cr index e93fb98..090ee0f 100644 --- a/zig-impl/crystal/some-crystal-app/src/high-level-bindings.cr +++ b/zig-impl/crystal/some-crystal-app/src/high-level-bindings.cr @@ -48,10 +48,6 @@ class IPC fd end - def write(fd : Int, message : IPCMessage::TypedMessage) - self.write(fd, message.payload.to_unsafe, message.payload.size) - end - def write(fd : Int, string : String) self.write(fd, string.to_unsafe, string.size.to_u64) end