From 9343ec311bc71de80588776137f4a0b6819c2729 Mon Sep 17 00:00:00 2001 From: Alexandros Naskos Date: Sat, 27 Jun 2020 15:30:32 +0300 Subject: [PATCH] Removed todo comments --- src/main.zig | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/main.zig b/src/main.zig index fdcc224..7f7176b 100644 --- a/src/main.zig +++ b/src/main.zig @@ -718,7 +718,6 @@ fn gotoDefinitionString(id: types.RequestId, pos_index: usize, handle: *Document } fn renameDefinitionGlobal(id: types.RequestId, handle: *DocumentStore.Handle, pos_index: usize, new_name: []const u8) !void { - // @TODO var arena = std.heap.ArenaAllocator.init(allocator); defer arena.deinit(); @@ -742,7 +741,6 @@ fn renameDefinitionFieldAccess( new_name: []const u8, config: Config, ) !void { - // @TODO var arena = std.heap.ArenaAllocator.init(allocator); defer arena.deinit(); @@ -1383,7 +1381,6 @@ fn processJsonRpc(parser: *std.json.Parser, json: []const u8, config: Config, ke return try respondGeneric(id, null_result_response); }; - // @TODO const pos = types.Position{ .line = position.getValue("line").?.Integer, .character = position.getValue("character").?.Integer,