MDSAL-301: Binding v2 - Rework javadoc generation
[mdsal.git] / binding2 / mdsal-binding2-generator-util / src / main / java / org / opendaylight / mdsal / binding / javav2 / generator / util / FormattingUtils.java
@@ -1,11 +1,11 @@
 /*
- * Copyright (c) 2017 Cisco Systems, Inc. and others.  All rights reserved.
+ * Copyright (c) 2018 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.mdsal.binding.javav2.generator.impl.util;
+package org.opendaylight.mdsal.binding.javav2.generator.util;
 
 import com.google.common.annotations.Beta;
 import com.google.common.base.CharMatcher;
@@ -20,13 +20,13 @@ import org.opendaylight.yangtools.yang.common.QName;
  * Util class
  */
 @Beta
-public final class YangTextTemplate {
+public final class FormattingUtils {
     private static final CharMatcher NEWLINE_OR_TAB = CharMatcher.anyOf("\n\t");
     @RegEx
     private static final String SPACES_REGEX = " +";
     private static final Pattern SPACES_PATTERN = Pattern.compile(SPACES_REGEX);
 
-    private YangTextTemplate() {
+    private FormattingUtils() {
         throw new UnsupportedOperationException("Util class");
     }