Skip to content

Commit 14f6b62

Browse files
committed
remove pointless comment
1 parent 3c7273c commit 14f6b62

File tree

1 file changed

+1
-1
lines changed
  • sbe-tool/src/main/java/uk/co/real_logic/sbe/generation/rust

1 file changed

+1
-1
lines changed

sbe-tool/src/main/java/uk/co/real_logic/sbe/generation/rust/LibRsDef.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,6 @@ static void generateReadBuf(final Appendable writer, final ByteOrder byteOrder)
183183
= new LinkedHashSet<>(TYPE_NAME_BY_PRIMITIVE_TYPE_MAP.values());
184184
final String endianness = byteOrder == LITTLE_ENDIAN ? "le" : "be";
185185

186-
// get_u8_at
187186
uniquePrimitiveTypes.remove("u8");
188187
indent(writer, 0, "\n");
189188
indent(writer, 1, "#[inline]\n");
@@ -234,6 +233,7 @@ static void generateWriteBuf(final Writer writer, final ByteOrder byteOrder) thr
234233
final LinkedHashSet<String> uniquePrimitiveTypes
235234
= new LinkedHashSet<>(TYPE_NAME_BY_PRIMITIVE_TYPE_MAP.values());
236235
final String endianness = byteOrder == LITTLE_ENDIAN ? "le" : "be";
236+
237237
uniquePrimitiveTypes.remove("u8");
238238
indent(writer, 1, "#[inline]\n");
239239
indent(writer, 1, "pub fn put_u8_at(&mut self, index: usize, value: u8) {\n");

0 commit comments

Comments
 (0)