BUG 2245 - Fixed Redundant Modifier
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / connection / MessageConsumer.java
index 3243a82f44c8ab5e0c9eebbf692ea4d6691ae956..81c1796ef498d9bd2fd82f8a63f2a7bcfd43e5ce 100644 (file)
@@ -1,4 +1,11 @@
-/* Copyright (C)2013 Pantheon Technologies, s.r.o. All rights reserved. */
+/*
+ * Copyright (c) 2013 Pantheon Technologies s.r.o. and others. 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
+ */
+
 
 package org.opendaylight.openflowjava.protocol.impl.connection;
 
@@ -6,13 +13,12 @@ import org.opendaylight.yangtools.yang.binding.DataObject;
 
 /**
  * @author mirehak
- *
  */
 public interface MessageConsumer {
 
     /**
      * @param message to process
      */
-    public void consume(DataObject message);
+    void consume(DataObject message);
 
 }