From f020ed9f9339e01e9dcf5e58f06307625ad6868e Mon Sep 17 00:00:00 2001 From: Taeyoung Son Date: Sat, 30 Mar 2013 14:09:07 +0900 Subject: [PATCH] [Title] use InstallCommand's another constructor. [Desc.] [Issue] Change-Id: I8a4b97644ea59042d8ca75deee7fd0cc736fba3a --- org.tizen.cli/src/org/tizen/cli/exec/install/Main.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/org.tizen.cli/src/org/tizen/cli/exec/install/Main.java b/org.tizen.cli/src/org/tizen/cli/exec/install/Main.java index 022a70b..21e8548 100755 --- a/org.tizen.cli/src/org/tizen/cli/exec/install/Main.java +++ b/org.tizen.cli/src/org/tizen/cli/exec/install/Main.java @@ -122,9 +122,8 @@ extends WRTLauncher logger.trace( "local widget file name : {}", fileName ); // core operation - InstallCommand install_command = new InstallCommand(); + InstallCommand install_command = new InstallCommand(getDevice(), fileName); install_command.setLocalPath( filePath ); - install_command.setWidget( fileName ); install_command.setDevice( getDevice() ); install_command.setTime( getTime() ); String remotePath = install_command.getRemotePath() + fileName; -- 2.7.4