Ignore:
Timestamp:
2008-09-18T16:50:16+02:00 (16 years ago)
Author:
stoecker
Message:

closed bug #1476 - invisible tram lines

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/mappaint/LineElemStyle.java

    r885 r990  
    22
    33import java.awt.Color;
    4 import java.util.LinkedList;
    5 import java.util.List;
     4import java.util.Collection;
    65
    76public class LineElemStyle extends ElemStyle implements Comparable<LineElemStyle>
     
    1615        public WidthMode widthMode;
    1716
    18         public List<LineElemStyle> overlays;
     17        public Collection<LineElemStyle> overlays;
    1918
    2019        public LineElemStyle(LineElemStyle s, long maxScale, long minScale) {
     
    3130        }
    3231
    33         public LineElemStyle(LineElemStyle s, List<LineElemStyle> overlays) {
     32        public LineElemStyle(LineElemStyle s, Collection<LineElemStyle> overlays) {
    3433                this.width = s.width;
    3534                this.realWidth = s.realWidth;
Note: See TracChangeset for help on using the changeset viewer.