View | Details | Raw Unified | Return to bug 194259
Collapse All | Expand All

(-)UI/org/eclipse/rse/internal/ui/view/team/SystemTeamViewPart.java (-1 / +5 lines)
Lines 15-20 Link Here
15
 * Martin Oberhuber (Wind River) - [186773] split ISystemRegistryUI from ISystemRegistry
15
 * Martin Oberhuber (Wind River) - [186773] split ISystemRegistryUI from ISystemRegistry
16
 * David Dykstal (IBM) - [189858] Removed the remote systems project in the team view
16
 * David Dykstal (IBM) - [189858] Removed the remote systems project in the team view
17
 * David Dykstal (IBM) - [186589] move user types, user actions, and compile commands
17
 * David Dykstal (IBM) - [186589] move user types, user actions, and compile commands
18
 * Rupen Mardirossian (IBM) - [194259] Check to see if ISystemProfile is null before attempting to get SystemTeamViewCategoryNode - getObjectFromMemento method
18
 *                                API to the user actions plugin
19
 *                                API to the user actions plugin
19
 ********************************************************************************/
20
 ********************************************************************************/
20
21
Lines 1405-1411 Link Here
1405
					break;
1406
					break;
1406
				case 3: 					
1407
				case 3: 					
1407
					SystemTeamViewProfileAdapter profileAdapter = RSEUIPlugin.getDefault().getSystemViewAdapterFactory().getProfileAdapter();
1408
					SystemTeamViewProfileAdapter profileAdapter = RSEUIPlugin.getDefault().getSystemViewAdapterFactory().getProfileAdapter();
1408
				    category = profileAdapter.restoreCategory(profile, token);
1409
					if(profile!=null)
1410
					{
1411
						category = profileAdapter.restoreCategory(profile, token);
1412
					}
1409
				    //System.out.println("Restored category: "+(category==null?"null":category.getLabel()));					
1413
				    //System.out.println("Restored category: "+(category==null?"null":category.getLabel()));					
1410
					break;
1414
					break;
1411
			}
1415
			}

Return to bug 194259