We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 446a9bf commit 5e2ff82Copy full SHA for 5e2ff82
sbe-tool/src/main/java/uk/co/real_logic/sbe/generation/csharp/CSharpGenerator.java
@@ -697,7 +697,7 @@ private CharSequence generateArrayFieldNotPresentCondition(
697
}
698
699
return String.format(
700
- indent + INDENT + INDENT + "if (actingVersion < %d) return 0;\n\n",
+ indent + INDENT + INDENT + "if (_actingVersion < %d) return 0;\n\n",
701
sinceVersion);
702
703
@@ -711,7 +711,7 @@ private CharSequence generateTypeFieldNotPresentCondition(
711
712
713
714
- indent + INDENT + INDENT + "if (actingVersion < %d) return null;\n\n",
+ indent + INDENT + INDENT + "if (_actingVersion < %d) return null;\n\n",
715
716
717
0 commit comments