From 9ce0c2a48828b6929d43d87ed97d967de1aacdff Mon Sep 17 00:00:00 2001 From: Vadim Lopatin Date: Fri, 27 Mar 2015 09:19:30 +0300 Subject: [PATCH] remove unnecessary logging --- src/dlangui/core/types.d | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/dlangui/core/types.d b/src/dlangui/core/types.d index 2099b568..0108e4f9 100644 --- a/src/dlangui/core/types.d +++ b/src/dlangui/core/types.d @@ -190,8 +190,6 @@ immutable int SIZE_IN_PERCENTS_FLAG = 0x0800_0000; /// convert custom size to pixels (sz can be either pixels, or points if SIZE_IN_POINTS_FLAG bit set) int toPixels(int sz) { if (sz > 0 && (sz & SIZE_IN_POINTS_FLAG) != 0) { - import dlangui.core.logger; - Log.d("size in points"); return pointsToPixels(sz ^ SIZE_IN_POINTS_FLAG); } return sz;