From 0f40fee0cd5d1dd36f68a02b81f2cff90261ef6b Mon Sep 17 00:00:00 2001 From: Sven Gothel Date: Thu, 16 Feb 2023 01:45:38 +0100 Subject: Typecast: Glyph: getGlyphIndex() -> getID() to simplify name --- src/jogl/classes/jogamp/graph/font/typecast/ot/Glyph.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/jogl/classes/jogamp/graph') diff --git a/src/jogl/classes/jogamp/graph/font/typecast/ot/Glyph.java b/src/jogl/classes/jogamp/graph/font/typecast/ot/Glyph.java index 7b29a6c48..03a2394d9 100644 --- a/src/jogl/classes/jogamp/graph/font/typecast/ot/Glyph.java +++ b/src/jogl/classes/jogamp/graph/font/typecast/ot/Glyph.java @@ -33,7 +33,7 @@ public abstract class Glyph { } /** Return the assigned glyph ID of this instance */ - public final int getGlyphIndex() { return _glyph_id; } + public final int getID() { return _glyph_id; } public abstract void clearPointData(); -- cgit v1.2.3