Merge commit 'refs/changes/20/18320/1' of ssh://git.opendaylight.org:29418/alto
[alto.git] / alto-commons / src / main / java / org / opendaylight / alto / commons / types / rfc7285 / FormatValidator.java
index b3346f73c2e90f251479229af6c805b8bb1a29fd..2cefed380307bb2ef8d6a067f449e217b804f9a3 100644 (file)
@@ -14,7 +14,7 @@ public class FormatValidator {
     private static final Pattern VALID_ID_PATTERN_WITH_DOT
                             = Pattern.compile("^["+VALID_CHARSET_WITH_DOT+"]{1,64}$");
     private static final String VALID_TAG_CHARSET = "!-~";
-    private static final Pattern VALID_TAG_PATTERN 
+    private static final Pattern VALID_TAG_PATTERN
                             = Pattern.compile("^["+VALID_TAG_CHARSET+"]{1,64}$}");
 
     public static boolean validId(String id) {