debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/newwizard/LaunchWizardData.java
branchRCL_2_4
changeset 1192 d1b481b25ae9
parent 1191 0523013ddf00
equal deleted inserted replaced
1191:0523013ddf00 1192:d1b481b25ae9
   418 	 */
   418 	 */
   419 	public Boolean isSysTRKConnection() {
   419 	public Boolean isSysTRKConnection() {
   420 		IConnectedService connectedService = getConnectedService();
   420 		IConnectedService connectedService = getConnectedService();
   421 		if (connectedService instanceof IConnectedService2) {
   421 		if (connectedService instanceof IConnectedService2) {
   422 			String value = ((IConnectedService2) connectedService).getProperties().get("is-system-trk"); //$NON-NLS-1$
   422 			String value = ((IConnectedService2) connectedService).getProperties().get("is-system-trk"); //$NON-NLS-1$
   423 			return Boolean.parseBoolean(value);
   423 			if (value != null) {
       
   424 				return Boolean.parseBoolean(value);
       
   425 			}
   424 		}
   426 		}
   425 		
   427 		
   426 		return null;
   428 		return null;
   427 	}
   429 	}
   428 	
   430