소스 검색

Move package declaration

Jon Skeet 17 년 전
부모
커밋
0c89aa1fdb
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      protos/tutorial/addressbook.proto

+ 2 - 2
protos/tutorial/addressbook.proto

@@ -1,11 +1,11 @@
+package tutorial;
+ 
 import "google/protobuf/csharp_options.proto";
 import "google/protobuf/descriptor.proto";
 
 option (google.protobuf.csharp_file_options).namespace = "Google.ProtocolBuffers.Examples.AddressBook";
 option (google.protobuf.csharp_file_options).umbrella_classname = "AddressBookProtos";
 
-package tutorial;
- 
 option optimize_for = SPEED;
 
 message Person {