timeline : fix UIEvent chart bug when unhandle event occurs. 72/27872/2
authorjungwook.ryu <jungwook.ryu@samsung.com>
Mon, 22 Sep 2014 08:16:38 +0000 (17:16 +0900)
committerjungwook.ryu <jungwook.ryu@samsung.com>
Tue, 23 Sep 2014 04:49:45 +0000 (13:49 +0900)
Change-Id: I2dd15517ff8b189d9caade33676fe928a076519f
Signed-off-by: jungwook.ryu <jungwook.ryu@samsung.com>
org.tizen.dynamicanalyzer/src/org/tizen/dynamicanalyzer/ui/timeline/chart/UIEventChart.java

index a8437fb..0a2f243 100644 (file)
@@ -179,8 +179,12 @@ public class UIEventChart extends TimelineChart {
                                                                                .getStatus()));
                                break;
                        default:
-                               System.out.println("UIEventChart.java : event type error");//$NON-NLS-1$
-                               return;
+                               /*
+                                * defalut case means that unsupported event type.
+                                * current, Key event is unsupported in chart. 
+                                * Key event occurs when click emulator's button of menu/home/back/power. 
+                                */
+                               break;
                        }
                }
        }