diff options
author | Sven Gothel <[email protected]> | 2023-02-18 03:27:00 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2023-02-18 03:27:00 +0100 |
commit | 8543225f7ce9a5ff16cd1f4aea74fe9ec24c2354 (patch) | |
tree | 352b805fd3eaf5d0ad049e84986fa8856330071e | |
parent | 55f2893fb2198a27fe1396620c17a71f5ba26b28 (diff) |
Glyph: getGlyphIndex() -> getID() to simplify name2023-02-18
-rw-r--r-- | src/main/java/net/java/dev/typecast/ot/Glyph.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/net/java/dev/typecast/ot/Glyph.java b/src/main/java/net/java/dev/typecast/ot/Glyph.java index d0cc4c1..6d12927 100644 --- a/src/main/java/net/java/dev/typecast/ot/Glyph.java +++ b/src/main/java/net/java/dev/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(); |