Thanks to visit codestin.com
Credit goes to jogamp.org

aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/net/java/dev/typecast/ot/T2Glyph.java
diff options
context:
space:
mode:
authorDavid Schweinsberg <[email protected]>2019-09-15 19:36:33 -0700
committerGitHub <[email protected]>2019-09-15 19:36:33 -0700
commit0d55ac0eb4a39a7f8f2a796c7eebd3ea778ba9a7 (patch)
treefbd6465afaf34b829ee2299f06a39c5a19486017 /src/main/java/net/java/dev/typecast/ot/T2Glyph.java
parent158166d9b194b69083923c55728589408932a673 (diff)
parentb51bd289a556f32afa37811bc682651efcff341d (diff)
Merge pull request #11 from dcsch/code-cleanupHEADmaster
Code cleanup
Diffstat (limited to 'src/main/java/net/java/dev/typecast/ot/T2Glyph.java')
-rw-r--r--src/main/java/net/java/dev/typecast/ot/T2Glyph.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/net/java/dev/typecast/ot/T2Glyph.java b/src/main/java/net/java/dev/typecast/ot/T2Glyph.java
index 2b33f3e..9e7afa8 100644
--- a/src/main/java/net/java/dev/typecast/ot/T2Glyph.java
+++ b/src/main/java/net/java/dev/typecast/ot/T2Glyph.java
@@ -27,8 +27,8 @@ import net.java.dev.typecast.cff.T2Interpreter;
* @author <a href="mailto:[email protected]">David Schweinsberg</a>
*/
public class T2Glyph extends Glyph {
- protected short _leftSideBearing;
- protected int _advanceWidth;
+ private final short _leftSideBearing;
+ private final int _advanceWidth;
private final Point[] _points;
private final Integer[] _hstems;
private final Integer[] _vstems;