浏览代码

Uncomment string/bytes fields in oneof nano.

Jisi Liu 10 年之前
父节点
当前提交
3ab660cd4a
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      javanano/src/test/java/com/google/protobuf/nano/unittest_nano.proto

+ 2 - 2
javanano/src/test/java/com/google/protobuf/nano/unittest_nano.proto

@@ -171,8 +171,8 @@ message TestAllTypesNano {
   oneof oneof_field {
     uint32 oneof_uint32 = 111;
     NestedMessage oneof_nested_message = 112;
-    // string oneof_string = 123;
-    // bytes oneof_bytes = 124;
+    string oneof_string = 123;
+    bytes oneof_bytes = 124;
     fixed64 oneof_fixed64 = 115;
   }
 }