Ignore:
Timestamp:
2015-04-30T23:38:08+02:00 (11 years ago)
Author:
Don-vip
Message:

fix #11382 - Improve MapCSS speed by using BitSets (patch by michael2402)

File:
1 edited

Legend:

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

    r8126 r8297  
    5757    public Map<String, Object> settingValues = new HashMap<>();
    5858
     59    /**
     60     * Constructs a new, active {@link StyleSource}.
     61     * @param url URL that {@link org.openstreetmap.josm.io.CachedFile} understands
     62     * @param name The name for this StyleSource
     63     * @param title The title that can be used as menu entry
     64     */
    5965    public StyleSource(String url, String name, String title) {
    6066        super(url, name, title, true);
    6167    }
    6268
     69    /**
     70     * Constructs a new {@link StyleSource}
     71     * @param entry The entry to copy the data (url, name, ...) from.
     72     */
    6373    public StyleSource(SourceEntry entry) {
    6474        super(entry);
Note: See TracChangeset for help on using the changeset viewer.