From a391b8dad9949a70c5684dfc3b70fc0d6dee4caf Mon Sep 17 00:00:00 2001 From: Elias Batek Date: Sun, 6 Oct 2024 01:34:18 +0200 Subject: [PATCH] Remove leftover debug{writeln();} --- pixmappaint.d | 8 -------- 1 file changed, 8 deletions(-) diff --git a/pixmappaint.d b/pixmappaint.d index 83b5c0e..d7d4363 100644 --- a/pixmappaint.d +++ b/pixmappaint.d @@ -626,14 +626,6 @@ struct SubPixmap { +/ int sourceOffsetOf(Point pos) { pos = (pos + offset); - debug { - import std.stdio : writeln; - - try { - writeln(pos); - } catch (Exception) { - } - } return linearOffset(pos, source.width); } }