diff options
author | Sven Gothel <[email protected]> | 2023-02-16 01:45:38 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2023-02-16 01:45:38 +0100 |
commit | 0f40fee0cd5d1dd36f68a02b81f2cff90261ef6b (patch) | |
tree | 86df56212cf9822627d28b588f94010503875474 /src/jogl/classes/jogamp/graph/font | |
parent | 3d489704360798ff146a6628eec60d52e3607f47 (diff) |
Typecast: Glyph: getGlyphIndex() -> getID() to simplify name
Diffstat (limited to 'src/jogl/classes/jogamp/graph/font')
-rw-r--r-- | src/jogl/classes/jogamp/graph/font/typecast/ot/Glyph.java | 2 |
1 files changed, 1 insertions, 1 deletions
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(); |