aboutsummaryrefslogtreecommitdiffstats
path: root/src/graphui/classes
diff options
context:
space:
mode:
Diffstat (limited to 'src/graphui/classes')
-rw-r--r--src/graphui/classes/com/jogamp/graph/ui/shapes/Label.java5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/graphui/classes/com/jogamp/graph/ui/shapes/Label.java b/src/graphui/classes/com/jogamp/graph/ui/shapes/Label.java
index dbce45a6d..b98e93174 100644
--- a/src/graphui/classes/com/jogamp/graph/ui/shapes/Label.java
+++ b/src/graphui/classes/com/jogamp/graph/ui/shapes/Label.java
@@ -193,10 +193,7 @@ public class Label extends GraphShape {
/** Convenient shortcut to {@link Font#getGlyphBounds(CharSequence, AffineTransform, AffineTransform)}. */
public static AABBox getUnscaledGlyphBounds(final Font font, final CharSequence text) {
- final AffineTransform tempT1 = new AffineTransform();
- final AffineTransform tempT2 = new AffineTransform();
-
- return font.getGlyphBounds(text, tempT1, tempT2);
+ return font.getGlyphBounds(text);
}
/** Convenient shortcut to {@link Font#getGlyphBounds(CharSequence, AffineTransform, AffineTransform)} using {@link #getFont()} and {@link #getText()}. */
public AABBox getUnscaledGlyphBounds() {