Ignore:
Timestamp:
2014-04-26T17:39:23+02:00 (12 years ago)
Author:
Don-vip
Message:

see #8465 - use diamond operator where applicable

File:
1 edited

Legend:

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

    r6901 r7005  
    3636
    3737    /** (preference key => return value) mappings valid for the current operation (no, those two maps cannot be combined) */
    38     protected static final Map<String, Integer> sessionChoices = new HashMap<String, Integer>();
     38    protected static final Map<String, Integer> sessionChoices = new HashMap<>();
    3939    /** (preference key =&gt; return value) mappings valid for the current session */
    40     protected static final Map<String, Integer> immediateChoices = new HashMap<String, Integer>();
     40    protected static final Map<String, Integer> immediateChoices = new HashMap<>();
    4141    /** a set indication that (preference key) is or may be stored for the currently active bulk operation */
    42     protected static final Set<String> immediateActive = new HashSet<String>();
     42    protected static final Set<String> immediateActive = new HashSet<>();
    4343
    4444    /**
Note: See TracChangeset for help on using the changeset viewer.