Latest spike of the refactor of the code generation; almost done refactoing it so I can look at the C++ code shortly...

git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@379825 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
James Strachan 2006-02-22 17:42:35 +00:00
parent 54db62a395
commit 7e464aff59
1 changed files with 1 additions and 1 deletions

View File

@ -213,7 +213,7 @@ public abstract class OpenWireCSharpMarshallingScript extends OpenWireJavaMarsha
}
else if (type.equals("byte[]") || type.equals("ByteSequence")) {
if (size != null) {
out.println("dataOut.WriteBytes(" + getter + ", 0, " + size.asInt() + ");");
out.println("dataOut.Write(" + getter + ", 0, " + size.asInt() + ");");
}
else {
out.println("if(bs.ReadBoolean()) {");