Ignore:
Timestamp:
07/14/2019 03:37:52 PM (7 years ago)
Author:
jdalbey
Message:

Changed restart dialog in CADClientView to a non-modal one to fix #159. Shortened exception log messages in other client modules.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/tmcsim/client/cadclientgui/screens/PendingIncidents.java

    r290 r445  
    525525                pendingIncidentsTable.getRowSorter().setSortKeys(keys); 
    526526                pendingIncidentsTable.getSelectionModel().setSelectionInterval(index, index); 
    527             } catch (RemoteException e) 
    528             { 
    529                 e.printStackTrace(); 
     527            } catch (RemoteException ex) 
     528            { 
     529                System.out.println("RemoteException in refreshTable method of PendingIncidents.java"); 
     530                System.out.println(ex.getMessage()); 
     531 
    530532            } 
    531533            revalidate(); 
Note: See TracChangeset for help on using the changeset viewer.