Ignore:
Timestamp:
2014-04-26T17:39:23+02:00 (11 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/preferences/projection/UTMProjectionChoice.java

    r6889 r7005  
    3333    private Hemisphere hemisphere;
    3434
    35     private static final List<String> cbEntries = new ArrayList<String>();
     35    private static final List<String> cbEntries = new ArrayList<>();
    3636    static {
    3737        for (int i = 1; i <= 60; i++) {
     
    117117    @Override
    118118    public String[] allCodes() {
    119         List<String> projections = new ArrayList<String>(60*4);
     119        List<String> projections = new ArrayList<>(60*4);
    120120        for (int zone = 1;zone <= 60; zone++) {
    121121            for (Hemisphere hemisphere : Hemisphere.values()) {
Note: See TracChangeset for help on using the changeset viewer.