Rename empty bytes in JavaNano.
This commit is contained in:
parent
cd99c12df2
commit
b0f194885e
2 changed files with 3 additions and 4 deletions
|
@ -352,13 +352,13 @@ public final class InternalNano {
|
|||
}
|
||||
return result;
|
||||
}
|
||||
private static final byte[] emptyBytes = new byte[0];
|
||||
private static final byte[] EMPTY_BYTES = new byte[0];
|
||||
private static Object primitiveDefaultValue(int type) {
|
||||
switch (type) {
|
||||
case TYPE_BOOL:
|
||||
return Boolean.FALSE;
|
||||
case TYPE_BYTES:
|
||||
return emptyBytes;
|
||||
return EMPTY_BYTES;
|
||||
case TYPE_STRING:
|
||||
return "";
|
||||
case TYPE_FLOAT:
|
||||
|
@ -443,7 +443,7 @@ public final class InternalNano {
|
|||
}
|
||||
|
||||
if (value == null) {
|
||||
// message type
|
||||
// message type value will be initialized by code-gen.
|
||||
value = (V) primitiveDefaultValue(valueType);
|
||||
}
|
||||
|
||||
|
|
|
@ -3742,7 +3742,6 @@ public class NanoTest extends TestCase {
|
|||
byte[] output = MessageNano.toByteArray(origin);
|
||||
TestMap parsed = new TestMap();
|
||||
MessageNano.mergeFrom(parsed, output);
|
||||
// TODO(liujisi): Test missing key/value in parsing.
|
||||
}
|
||||
|
||||
public void testMapSerializeRejectNull() throws Exception {
|
||||
|
|
Loading…
Add table
Reference in a new issue