Changeset 32684 in osm
- Timestamp:
- 2016-07-21T03:48:35+02:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/pdfimport/src/pdfimport/pdfbox/GraphicsProcessor.java
r32542 r32684 12 12 import java.awt.geom.Point2D; 13 13 import java.util.ArrayList; 14 import java.util.Arrays; 14 15 import java.util.List; 15 16 … … 206 207 207 208 if (stroke.getDashArray() != null) { 208 this.info.dash = stroke.getDashArray() .hashCode();209 this.info.dash = Arrays.hashCode(stroke.getDashArray()); 209 210 } 210 211 }
Note:
See TracChangeset
for help on using the changeset viewer.