Turned off codec source code generation by default. 04/9104/1
authorTony Tkacik <ttkacik@cisco.com>
Thu, 17 Jul 2014 08:02:25 +0000 (10:02 +0200)
committerTony Tkacik <ttkacik@cisco.com>
Thu, 17 Jul 2014 08:02:25 +0000 (10:02 +0200)
Change-Id: Iad6eda63c109e3d813c704e2eda56b067c7d1688
Signed-off-by: Tony Tkacik <ttkacik@cisco.com>
code-generator/binding-generator-impl/src/main/java/org/opendaylight/yangtools/sal/binding/generator/util/SourceCodeGeneratorFactory.java

index a5db5af79db6886818ddadaaa27f30cf7cf02c6e..23549c6bd418ff5f2fae826b2f81e68a7de2e99c 100644 (file)
@@ -31,7 +31,7 @@ public class SourceCodeGeneratorFactory {
      */
     public SourceCodeGenerator getInstance( String generatedSourceDir ) {
 
-        boolean generateSource = Boolean.valueOf( System.getProperty( GENERATE_CODEC_SOURCE_PROP, "true") );
+        boolean generateSource = Boolean.valueOf( System.getProperty( GENERATE_CODEC_SOURCE_PROP, "false") );
         if( generateSource ) {
             return new DefaultSourceCodeGenerator( generatedSourceDir );
         }