-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix potential compile failure for long protobuf message name (#27)
- Loading branch information
1 parent
359c82c
commit 3e49bd8
Showing
2 changed files
with
15 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
syntax = "proto3"; | ||
|
||
option java_multiple_files = true; | ||
option java_package = "com.example.application.system.types"; | ||
option java_outer_classname = "VeryLongMessageNameProto"; | ||
|
||
package com.example.application.system.types; | ||
|
||
message VeryVeryLongTestProtocolBuffersMessageName { | ||
repeated string type = 1; | ||
} |