[Title] Fixed sdb library changing side effect
authorgyeongseok.seo <gyeongseok.seo@samsung.com>
Wed, 5 Jun 2013 02:02:30 +0000 (11:02 +0900)
committergyeongseok.seo <gyeongseok.seo@samsung.com>
Wed, 5 Jun 2013 02:02:30 +0000 (11:02 +0900)
[Desc.]
[Issue]

Change-Id: I414a306f28f87c4657d886d4697e84084e45043d

org.tizen.common/src/org/tizen/common/rds/RdsDeltaDetector.java

index 5df0dfd..8c137ad 100755 (executable)
@@ -129,7 +129,7 @@ public class RdsDeltaDetector {
         }
         
         String deltaFileOnRemote = remotePath + STR_TREE_DIRECTORY + STR_TREE_FILE;
-        strLocalFile = project.getLocation().toString() + "/" + STR_TREE_FILE;
+        strLocalFile = project.getLocation().toString();
         try {
             SyncResult result = device.getSyncService().pull(device.getFileEntry( deltaFileOnRemote ), strLocalFile);
             if ( result.getCode() != RESULT_OK ) {
@@ -139,7 +139,7 @@ public class RdsDeltaDetector {
             return null;
         }
         
-        return strLocalFile;
+        return strLocalFile + "/" + STR_TREE_FILE;
     }
     
     /**