Code cleaning (removed trailing space characters) 31/11131/1
authorkh5325.kim <kh5325.kim@samsung.com>
Mon, 21 Oct 2013 04:32:09 +0000 (13:32 +0900)
committerkh5325.kim <kh5325.kim@samsung.com>
Mon, 21 Oct 2013 04:32:09 +0000 (13:32 +0900)
Signed-off-by: kh5325.kim <kh5325.kim@samsung.com>
org.tizen.cli/src/org/tizen/cli/exec/AbstractLauncher.java
org.tizen.cli/src/org/tizen/cli/exec/sign/Main.java
org.tizen.cli/test/src/org/tizen/cli/exec/TargetDeviceSelectorTest.java

index 67ee0a4..d212c4c 100644 (file)
@@ -174,7 +174,7 @@ AbstractLauncher
        /**
         * {@link Executor} for Command Line Interface
         */
-       protected Executor executor; 
+       protected Executor executor;
 
        /**
         * A command user inputs
index 8b384b2..c57f384 100644 (file)
@@ -186,7 +186,7 @@ extends AbstractLauncher
         final List<String> args = cmdLine.getArgList();
         logger.trace( "arguments :{}", args );
         
-        int nArgs = args.size(); 
+        int nArgs = args.size();
         
         String baseDir = convertPath( "." );
         if ( 0 < nArgs )
index 5c6e525..714dd3c 100644 (file)
@@ -97,7 +97,7 @@ TargetDeviceSelectorTest
         mockPropter = mock( Prompter.class );
         mockDevice1 = mock( IDevice.class );
         mockDevice2 = mock( IDevice.class );
-        mockDevices = new IDevice[] { mockDevice1, mockDevice2 }; 
+        mockDevices = new IDevice[] { mockDevice1, mockDevice2 };
         when( mockDevice1.toString() ).thenReturn( "test1" );
         when( mockDevice1.getDeviceName() ).thenReturn( "name1" );
         when( mockDevice2.toString() ).thenReturn( "test2" );