Ignore:
Timestamp:
2015-05-02T00:55:19+02:00 (9 years ago)
Author:
Don-vip
Message:

fix potential NPEs and Sonar issues related to serialization

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/tagging/ac/AutoCompletionList.java

    r8291 r8308  
    3333
    3434    /** the bare list of AutoCompletionItems */
    35     private List<AutoCompletionListItem> list = null;
     35    private transient List<AutoCompletionListItem> list = null;
    3636    /**  the filtered list of AutoCompletionItems */
    37     private ArrayList<AutoCompletionListItem> filtered = null;
     37    private transient ArrayList<AutoCompletionListItem> filtered = null;
    3838    /** the filter expression */
    3939    private String filter = null;
    4040    /** map from value to priority */
    41     private Map<String,AutoCompletionListItem> valutToItemMap;
     41    private transient Map<String,AutoCompletionListItem> valutToItemMap;
    4242
    4343    /**
Note: See TracChangeset for help on using the changeset viewer.