Ignore:
Timestamp:
2018-05-23T21:03:31+02:00 (6 years ago)
Author:
Don-vip
Message:

SonarQube - fix code style issues

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/imagery/LayerDetails.java

    r13818 r13824  
    1515 */
    1616public class LayerDetails {
    17     private Map<String, String> styles = new ConcurrentHashMap<>(); // name -> title
    18     private Collection<String> crs = new ArrayList<>();
     17    private final Map<String, String> styles = new ConcurrentHashMap<>(); // name -> title
     18    private final Collection<String> crs = new ArrayList<>();
    1919    /**
    2020     * The layer name (WMS {@code Title})
     
    3030     */
    3131    private String abstr;
    32     private LayerDetails parentLayer;
     32    private final LayerDetails parentLayer;
    3333    private Bounds bounds;
    3434    private List<LayerDetails> children = new ArrayList<>();
Note: See TracChangeset for help on using the changeset viewer.