Ignore:
Timestamp:
2014-10-18T23:07:52+02:00 (12 years ago)
Author:
donvip
Message:

[josm_plugins] fix Java 7 / unused code warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/imagerycache/src/org/mapdb/TxMaker.java

    r30532 r30737  
    1818    protected final Object lock = new Object();
    1919
    20     protected final LongMap<TxEngine> globalMod = new LongHashMap<TxEngine>();
     20    protected final LongMap<TxEngine> globalMod = new LongHashMap<>();
    2121
    2222
     
    5959
    6060        protected LongMap<Fun.Tuple2<?, Serializer>> modItems =
    61                 new LongHashMap<Fun.Tuple2<?, Serializer>>();
     61                new LongHashMap<>();
    6262
    63         protected Set<Long> newItems = new LinkedHashSet<Long>();
     63        protected Set<Long> newItems = new LinkedHashSet<>();
    6464
    6565        protected TxEngine(Engine engine) {
Note: See TracChangeset for help on using the changeset viewer.