From c81de4fead871f38e4e79adefc262f5fae2b097c Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Fri, 26 Jan 2018 16:42:50 +0100 Subject: [PATCH] Win: Removed DPI detection debug output --- arduino-core/src/processing/app/windows/Platform.java | 1 - 1 file changed, 1 deletion(-) diff --git a/arduino-core/src/processing/app/windows/Platform.java b/arduino-core/src/processing/app/windows/Platform.java index 2b426f728..3cdb10594 100644 --- a/arduino-core/src/processing/app/windows/Platform.java +++ b/arduino-core/src/processing/app/windows/Platform.java @@ -289,7 +289,6 @@ public class Platform extends processing.app.Platform { return ExtUser32.INSTANCE.GetDpiForSystem(); } catch (Throwable e) { // DPI detection failed, fall back with default - System.out.println("DPI detection failed, fallback to 96 dpi"); return -1; } }