aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2023-02-18 03:27:00 +0100
committerSven Gothel <[email protected]>2023-02-18 03:27:00 +0100
commit8543225f7ce9a5ff16cd1f4aea74fe9ec24c2354 (patch)
tree352b805fd3eaf5d0ad049e84986fa8856330071e
parent55f2893fb2198a27fe1396620c17a71f5ba26b28 (diff)
Glyph: getGlyphIndex() -> getID() to simplify name2023-02-18
-rw-r--r--src/main/java/net/java/dev/typecast/ot/Glyph.java2
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();