From c763bc5aaa3c7edad2d8b49f706b7741eeef09c3 Mon Sep 17 00:00:00 2001 From: Ben Fry Date: Mon, 10 Jan 2022 20:33:42 -0500 Subject: [PATCH] move comment location for clarity --- core/src/processing/core/PGraphics.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/core/src/processing/core/PGraphics.java b/core/src/processing/core/PGraphics.java index 350c5b1f1..69322cd1d 100644 --- a/core/src/processing/core/PGraphics.java +++ b/core/src/processing/core/PGraphics.java @@ -4244,12 +4244,11 @@ public class PGraphics extends PImage implements PConstants { if (input != null) { baseFont = Font.createFont(Font.TRUETYPE_FONT, input); } - } catch (Exception e) { - // Fall back to how this was handled in 3.x, ugly! e.printStackTrace(); // dammit } + // Fall back to how this was handled in 3.x, ugly! if (baseFont == null) { baseFont = new Font("Lucida Sans", Font.PLAIN, 1); }