[Title]remove exception when get target list
authormunkyu.im <munkyu.im@samsung.com>
Fri, 16 Mar 2012 02:00:12 +0000 (11:00 +0900)
committermunkyu.im <munkyu.im@samsung.com>
Fri, 16 Mar 2012 02:00:12 +0000 (11:00 +0900)
[Type]
[Module]
[Priority]
[CQ#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

src/org/tizen/emulator/manager/tool/Launcher.java
src/org/tizen/emulator/manager/vms/EmulatorVMs.java

index 423ad06..0c21296 100644 (file)
@@ -53,10 +53,10 @@ public class Launcher {
                                return;
                        } catch (UnknownHostException e) {
                                // TODO Auto-generated catch block
-                               e.printStackTrace();
+                       //      e.printStackTrace();
                        } catch (IOException e) {
                                // means portNo not in use
-                               e.printStackTrace();
+                       //      e.printStackTrace();
                        }
                }
 
index 9535d98..112b174 100644 (file)
@@ -91,7 +91,7 @@ public class EmulatorVMs {
                                String configFilename = vmsDir.getName() + ".xml";
                                File configFile = new File(vmsDir, configFilename);
                                if(!configFile.exists())
-                                       throw new Exception(); // FIXME
+                                       continue ; // FIXME
                                
                                VMsProperty property = parseXML(configFile);