Skip to content

Commit edf908b

Browse files
committed
Continued renaming of serialized to encoded for IR.
1 parent cd6fac9 commit edf908b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

main/java/uk/co/real_logic/sbe/SbeTool.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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
{

0 commit comments

Comments
 (0)