tmf: Update copyright headers in tmf.ui
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / views / uml2sd / util / TimeEventComparator.java
index b6228df0d1b1f766bfe9be9684023185800ae77c..a9bedf46ce616946940d6beb06de56833699d20d 100755 (executable)
@@ -1,16 +1,15 @@
 /**********************************************************************
- * Copyright (c) 2005, 2006 IBM Corporation and others.
- * Copyright (c) 2011, 2012 Ericsson.
- * 
+ * Copyright (c) 2005, 2012 IBM Corporation, Ericsson
  * All rights reserved.   This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License v1.0
  * which accompanies this distribution, and is available at
  * http://www.eclipse.org/legal/epl-v10.html
- * 
- * Contributors: 
- * IBM - Initial API and implementation
- * Bernd Hufmann - Updated for TMF
+ *
+ * Contributors:
+ *     IBM - Initial API and implementation
+ *     Bernd Hufmann - Updated for TMF
  **********************************************************************/
+
 package org.eclipse.linuxtools.tmf.ui.views.uml2sd.util;
 
 import java.io.Serializable;
@@ -20,9 +19,9 @@ import org.eclipse.linuxtools.tmf.ui.views.uml2sd.core.SDTimeEvent;
 
 /**
  * Time event comparator
- * 
+ *
+ * @version 1.0
  * @author sveyrier
- * 
  */
 public class TimeEventComparator implements Comparator<SDTimeEvent>, Serializable {
 
@@ -45,8 +44,8 @@ public class TimeEventComparator implements Comparator<SDTimeEvent>, Serializabl
      */
     @Override
     public int compare(SDTimeEvent arg0, SDTimeEvent arg1) {
-        SDTimeEvent t1 = (SDTimeEvent) arg0;
-        SDTimeEvent t2 = (SDTimeEvent) arg1;
+        SDTimeEvent t1 = arg0;
+        SDTimeEvent t2 = arg1;
         if (t1.getEvent() > t2.getEvent()) {
             return 1;
         }
This page took 0.024407 seconds and 5 git commands to generate.