mirror of https://github.com/apache/activemq.git
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:
parent
54db62a395
commit
7e464aff59
|
@ -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()) {");
|
||||
|
|
Loading…
Reference in New Issue