Fix checkstyle issues to enforce it
[controller.git] / opendaylight / config / config-manager-facade-xml / src / main / java / org / opendaylight / controller / config / facade / xml / mapping / attributes / mapping / AttributeMappingStrategy.java
index b082ddc2f2316246c21f5cadeefcec4d37db0624..33eb64d395c5fee3d49408f875b4af3da7f5f2a4 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
+ * Copyright (c) 2015, 2017 Cisco Systems, Inc. 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,
@@ -15,6 +15,5 @@ public interface AttributeMappingStrategy<T, O extends OpenType<?>> {
 
     O getOpenType();
 
-    Optional<T> mapAttribute(Object o);
-
+    Optional<T> mapAttribute(Object object);
 }