From 953de9438695a5334a8f9ba31b4ff1c2826b4682 Mon Sep 17 00:00:00 2001 From: Oliver-Loeffler Date: Wed, 10 Apr 2024 23:56:44 +0200 Subject: [PATCH] Removed modification of GlueInstruction (toString()). --- .../javafx/scenebuilder/kit/fxom/glue/GlueInstruction.java | 5 ----- 1 file changed, 5 deletions(-) diff --git a/kit/src/main/java/com/oracle/javafx/scenebuilder/kit/fxom/glue/GlueInstruction.java b/kit/src/main/java/com/oracle/javafx/scenebuilder/kit/fxom/glue/GlueInstruction.java index 115c83ec6..6a10c801b 100644 --- a/kit/src/main/java/com/oracle/javafx/scenebuilder/kit/fxom/glue/GlueInstruction.java +++ b/kit/src/main/java/com/oracle/javafx/scenebuilder/kit/fxom/glue/GlueInstruction.java @@ -1,5 +1,4 @@ /* - * Copyright (c) 2017, 2024, Gluon and/or its affiliates. * Copyright (c) 2012, 2014, Oracle and/or its affiliates. * All rights reserved. Use is subject to license terms. * @@ -55,9 +54,5 @@ public String getData() { return data; } - @Override - public String toString() { - return "GlueInstruction: %s : %s".formatted(String.valueOf(target), String.valueOf(data)); - } }