Changeset 11525 in josm for trunk/src/com/kitfox/svg/util
- Timestamp:
- 2017-02-02T00:08:08+01:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/com/kitfox/svg/util/FontSystem.java
r10787 r11525 56 56 FontMetrics fm; 57 57 58 HashMap glyphCache = new HashMap();58 HashMap<String, Glyph> glyphCache = new HashMap<String, Glyph>(); 59 59 60 60 public FontSystem(String fontFamily, int fontStyle, int fontWeight, int fontSize) … … 94 94 } 95 95 96 @Override 96 97 public MissingGlyph getGlyph(String unicode) 97 98 {
Note:
See TracChangeset
for help on using the changeset viewer.