File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed 
main/java/uk/co/real_logic/sbe Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -76,8 +76,8 @@ public class SbeTool
7676 /** Output directory for generated code */ 
7777 public  static  final  String  OUTPUT_DIR  = "sbe.output.dir" ;
7878
79-  /** String system property to hold filename for serialization  of IR. */ 
80-  public  static  final  String  SERIALIZED_IR_FILENAME  = "sbe.ir.filename" ;
79+  /** String system property to hold filename for encoding  of IR. */ 
80+  public  static  final  String  ENCODED_IR_FILENAME  = "sbe.ir.filename" ;
8181
8282 /** 
8383 * Main entry point for the SBE Tool. 
@@ -119,11 +119,11 @@ else if (fileName.endsWith(".sbeir"))
119119 generate (ir , outputDirName , targetLanguage );
120120 }
121121
122-  final  String  serializedIrFilename  = System .getProperty (SERIALIZED_IR_FILENAME );
123-  if  (serializedIrFilename  != null )
122+  final  String  encodedIrFilename  = System .getProperty (ENCODED_IR_FILENAME );
123+  if  (encodedIrFilename  != null )
124124 {
125125 final  String  outputDirName  = System .getProperty (OUTPUT_DIR , "." );
126-  final  File  fullPath  = new  File (outputDirName , serializedIrFilename );
126+  final  File  fullPath  = new  File (outputDirName , encodedIrFilename );
127127
128128 try  (final  Encoder  encoder  = new  Encoder (fullPath .getAbsolutePath (), ir ))
129129 {
                         You can’t perform that action at this time. 
           
                  
0 commit comments