[Title] remove fatal exception when missing files exist.
authoryongsung1.kim <yongsung1.kim@samsung.com>
Fri, 26 Apr 2013 12:20:24 +0000 (21:20 +0900)
committeryongsung1.kim <yongsung1.kim@samsung.com>
Fri, 26 Apr 2013 12:20:24 +0000 (21:20 +0900)
[Desc.]
[Issue]

Change-Id: I3f0f579f187895889b918596edab53385ae76904

InstallManager_java/src/org/tizen/installmanager/core/Installer.java

index 0db06ef..13c0ca0 100644 (file)
@@ -115,7 +115,7 @@ public class Installer {
                List<File> missingFiles = findMissingFiles(pack);
                if (missingFiles.size() > 0) {
                        Log.err("Some files are not moved properly: " + missingFiles);
-                       throw new IMFatalException(ErrorCode.FIND_MISSING_FILES);
+//                     throw new IMFatalException(ErrorCode.FIND_MISSING_FILES);
                } else {
                        Log.log("All files moved properly.");
                }