Fixing sonar issues 2
[yangtools.git] / yang / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / api / type / LeafrefTypeDefinition.java
index de0db28e926c32f80465eaa1b9513f3735bfb136..1a89ff16151e1006883690834f3983cdea6aefa1 100644 (file)
@@ -1,17 +1,16 @@
 /*
 * Copyright (c) 2013 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,
 * and is available at http://www.eclipse.org/legal/epl-v10.html
 */
+ * Copyright (c) 2013 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,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ */
 package org.opendaylight.yangtools.yang.model.api.type;
 
 import org.opendaylight.yangtools.yang.model.api.RevisionAwareXPath;
 import org.opendaylight.yangtools.yang.model.api.TypeDefinition;
 
-public interface LeafrefTypeDefinition extends
-        TypeDefinition<LeafrefTypeDefinition> {
+public interface LeafrefTypeDefinition extends TypeDefinition<LeafrefTypeDefinition> {
 
-    public RevisionAwareXPath getPathStatement();
+    RevisionAwareXPath getPathStatement();
 }