TEMP: Fixed build error 25/32225/1
authorTaeyoung Son <taeyoung2.son@samsung.com>
Wed, 17 Dec 2014 04:04:47 +0000 (13:04 +0900)
committerTaeyoung Son <taeyoung2.son@samsung.com>
Wed, 17 Dec 2014 04:04:47 +0000 (13:04 +0900)
After upload the package, it will be reverted.

Change-Id: I81774fa86a55dda18d2cf3cbff64127f47ba42e8
Signed-off-by: Taeyoung Son <taeyoung2.son@samsung.com>
org.tizen.dynamicanalysis.ide.eplugin/src/org/tizen/dynamicanalysis/ide/eplugin/launch/TizenNativeApplicationDADelegate.java
org.tizen.dynamicanalysis.ide.eplugin/src/org/tizen/dynamicanalysis/ide/eplugin/launch/TizenNativeApplicationDAShortcut.java

index 28f19bb..2172040 100644 (file)
@@ -960,7 +960,7 @@ public class TizenNativeApplicationDADelegate extends
 
        protected IPath getHostPath(String exePath, ILaunchConfiguration config)
                        throws CoreException {
-               IPath path = new Path(target.getRootstrap().getPath());
+               IPath path = target.getRootstrap().getPath();
                if (target.getRootstrapCommander() == null) {
                        return new Path(exePath);
                }
@@ -1016,7 +1016,7 @@ public class TizenNativeApplicationDADelegate extends
        }
 
     protected void checkPackageFiles(IProject project, IConfiguration config) throws CoreException {
-       String selectedRootstrapArch = RootstrapManager.getSelectedRootstrap().getArchitecture();
+       String selectedRootstrapArch = RootstrapManager.getSelectedRootstrap().getArch();
        List<IPackage> pkgs = pkgUtil.getPackages(project, config, selectedRootstrapArch);
        if (pkgs == null || pkgs.isEmpty()) {
            newCoreException("Can not find package(.rpm) file. Try to build again", null);
index 3e55e0a..176ccbe 100755 (executable)
@@ -399,7 +399,7 @@ public class TizenNativeApplicationDAShortcut extends TizenLaunchShortcut {
     
     protected boolean checkPackaging(final IProject project) {
         final IConfiguration config = PlatformConfigurationManager.getDefaultConfiguration(project);
-        String selectedRootstrapArch = RootstrapManager.getSelectedRootstrap().getArchitecture();
+        String selectedRootstrapArch = RootstrapManager.getSelectedRootstrap().getArch();
         List<IPackage> pkgs = pkgUtil.getPackages(project, config, selectedRootstrapArch);
         if (pkgs == null || pkgs.isEmpty()) {
             if (PlatformLaunchUtil.questionPackaging(project)) {