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/dialogs/ConflictDialog.java

    r7949 r8308  
    7777
    7878    /** the collection of conflicts displayed by this conflict dialog */
    79     private ConflictCollection conflicts;
     79    private transient ConflictCollection conflicts;
    8080
    8181    /** the model for the list of conflicts */
    82     private ConflictListModel model;
     82    private transient ConflictListModel model;
    8383    /** the list widget for the list of conflicts */
    8484    private JList<OsmPrimitive> lstConflicts;
    8585
    8686    private final JPopupMenu popupMenu = new JPopupMenu();
    87     private final PopupMenuHandler popupMenuHandler = new PopupMenuHandler(popupMenu);
     87    private final transient PopupMenuHandler popupMenuHandler = new PopupMenuHandler(popupMenu);
    8888
    8989    private ResolveAction actResolve;
Note: See TracChangeset for help on using the changeset viewer.