From: gyeongseok.seo Date: Thu, 3 Jan 2013 01:47:53 +0000 (+0900) Subject: [Title] Device select notify string changed. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e578dd9f76016101b82d4036b79fadca035556d1;p=sdk%2Ftools%2Fcli.git [Title] Device select notify string changed. [Desc.] select device to selected device [Issue] 7825 Change-Id: I4ee9c90fd67d764c84887dfea30747fec3a354e4 --- diff --git a/org.tizen.cli/src/org/tizen/cli/exec/TargetDeviceSelector.java b/org.tizen.cli/src/org/tizen/cli/exec/TargetDeviceSelector.java index 2d6b8f5..864d39c 100755 --- a/org.tizen.cli/src/org/tizen/cli/exec/TargetDeviceSelector.java +++ b/org.tizen.cli/src/org/tizen/cli/exec/TargetDeviceSelector.java @@ -147,7 +147,7 @@ TargetDeviceSelector if ( devices.length == 1 ) { selectDevice = ArrayUtil.pickupFirst( devices ); - String msg = MessageFormat.format( "Select Device is: {0}( {1} )" , selectDevice.toString(), selectDevice.getDeviceName() ); + String msg = MessageFormat.format( "Selected Device is: {0}( {1} )" , selectDevice.toString(), selectDevice.getDeviceName() ); prompter.notify( msg ); } else if ( devices.length > 1 ) { ChoiceOption yes = new ChoiceOption( "Yes" );