BUG 2245 - Fixed Redundant Modifier
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / connection / ShutdownProvider.java
index 1be047ae80fc36d96dce87b2a67dc2d52af3bb24..facecb9fbd295234a4ee4d8e8455164d7048c709 100644 (file)
@@ -1,11 +1,12 @@
-/**
- * Copyright (c) 2013 Cisco Systems, Inc. and others.  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;
 
 import com.google.common.util.concurrent.ListenableFuture;
@@ -13,13 +14,12 @@ import com.google.common.util.concurrent.ListenableFuture;
 
 /**
  * @author mirehak
- *
  */
 public interface ShutdownProvider {
 
     /**
      * @return shutdown future 
      */
-    public ListenableFuture<Boolean> shutdown();
+    ListenableFuture<Boolean> shutdown();
 
 }