Ignore:
Timestamp:
2020-06-14T14:55:29+02:00 (6 years ago)
Author:
simon04
Message:

see #19334 - https://errorprone.info/bugpattern/MixedMutabilityReturnType

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/tools/WinRegistry.java

    r14977 r16628  
    202202        }
    203203        regCloseKey.invoke(root, getNumber(handles, 0));
    204         return results;
     204        return Collections.unmodifiableMap(results);
    205205    }
    206206
     
    226226        }
    227227        regCloseKey.invoke(root, getNumber(handles, 0));
    228         return results;
     228        return Collections.unmodifiableList(results);
    229229    }
    230230
Note: See TracChangeset for help on using the changeset viewer.