Fixed compilation breakage in JSONNormalizedNodeStreamWriter caused by merge job. 14/10614/1
authorTony Tkacik <ttkacik@cisco.com>
Tue, 2 Sep 2014 07:11:08 +0000 (09:11 +0200)
committerTony Tkacik <ttkacik@cisco.com>
Tue, 2 Sep 2014 07:11:08 +0000 (09:11 +0200)
Change-Id: I05b9ced5e2cce837df1f86a0804e36bf1a7cf907
Signed-off-by: Tony Tkacik <ttkacik@cisco.com>
yang/yang-data-codec-gson/src/main/java/org/opendaylight/yangtools/yang/data/codec/gson/JSONNormalizedNodeStreamWriter.java

index 881bc58f2af6a4888a0718f2d5bf2743e2b0d5ce..7da9c00cbf3cbf2907369e3c25cc6be9c4018912 100644 (file)
@@ -108,8 +108,7 @@ public class JSONNormalizedNodeStreamWriter implements NormalizedNodeStreamWrite
             indent = null;
         }
 
-        this.utils = SchemaContextUtils.create(schemaContext);
-        this.codecs = RestCodecFactory.create(utils);
+        this.codecs = CodecFactory.create(schemaContext);
         this.tracker = SchemaTracker.create(schemaContext,path);
     }