Bug 5740: Remove Serializable where not necessary
[controller.git] / opendaylight / md-sal / sal-akka-raft / src / main / java / org / opendaylight / controller / cluster / raft / base / messages / ElectionTimeout.java
index 8dd49e1cad4982aad17d1084671c2a792aa7078f..606835e21fb09f3cda595aa3cdb27c052a885678 100644 (file)
@@ -8,13 +8,10 @@
 
 package org.opendaylight.controller.cluster.raft.base.messages;
 
-import java.io.Serializable;
-
 /**
- * Message sent to indicate the current election term has timed out.
+ * Local message sent to indicate the current election term has timed out.
  */
-public final class ElectionTimeout implements Serializable {
-    private static final long serialVersionUID = 1L;
+public final class ElectionTimeout {
     public static final ElectionTimeout INSTANCE = new ElectionTimeout();
 
     private ElectionTimeout() {