Remove JSR305 annotations from yang-data-codec-gson
[yangtools.git] / yang / yang-data-codec-gson / src / main / java / org / opendaylight / yangtools / yang / data / codec / gson / JSONStreamWriterRootContext.java
index 5c02498c4604ec8d31559e8a4ea1653155dde8f1..1d5b340fab5d787e8b85ff480623f190b1bad1ef 100644 (file)
@@ -9,15 +9,12 @@ package org.opendaylight.yangtools.yang.data.codec.gson;
 
 import java.net.URI;
 
-
 /**
  * The root node of a particular {@link JSONNormalizedNodeStreamWriter} instance.
  * It holds the base namespace and can never be removed from the stack.
  */
 abstract class JSONStreamWriterRootContext extends JSONStreamWriterURIContext {
-
     JSONStreamWriterRootContext(final URI namespace) {
         super(null, namespace);
     }
-
 }