Remove yang-test
[controller.git] / opendaylight / config / config-manager / src / main / java / org / opendaylight / controller / config / manager / impl / osgi / mapping / BindingContextProvider.java
index 472510f1bbbfc0d2fe040c72e982f7ee10a90bd9..6cf831510bf086ba9faba27c7f5441019ee94824 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
+ * Copyright (c) 2013, 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,
@@ -13,15 +13,18 @@ import org.opendaylight.mdsal.binding.generator.util.BindingRuntimeContext;
 import org.opendaylight.yangtools.yang.model.api.SchemaContextProvider;
 
 /**
- * Creates and initializes {@link BindingRuntimeContext}, which is used to resolve Identity classes from QName.
- * An instance of {@link BindingRuntimeContext} is available only after first schema context was successfully built.
+ * Creates and initializes {@link BindingRuntimeContext}, which is used to
+ * resolve Identity classes from QName. An instance of
+ * {@link BindingRuntimeContext} is available only after first schema context
+ * was successfully built.
  */
 // TODO move to yang runtime
 public class BindingContextProvider implements AutoCloseable {
 
     private BindingRuntimeContext current;
 
-    public synchronized void update(final ClassLoadingStrategy classLoadingStrategy, final SchemaContextProvider ctxProvider) {
+    public synchronized void update(final ClassLoadingStrategy classLoadingStrategy,
+            final SchemaContextProvider ctxProvider) {
         this.current = BindingRuntimeContext.create(classLoadingStrategy, ctxProvider.getSchemaContext());
     }