Skip to content

Commit 05176e9

Browse files
committed
Remove redundant defaults in InterfaceVersion
1 parent 694dc25 commit 05176e9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

osi_version.proto.in

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@ message InterfaceVersion
3333
{
3434
// Major version number.
3535
//
36-
optional uint32 version_major = 1 [default = 0];
36+
optional uint32 version_major = 1;
3737

3838
// Minor version number.
3939
//
40-
optional uint32 version_minor = 2 [default = 0];
40+
optional uint32 version_minor = 2;
4141

4242
// Patch version number.
4343
//
44-
optional uint32 version_patch = 3 [default = 0];
44+
optional uint32 version_patch = 3;
4545
}
4646

4747

0 commit comments

Comments
 (0)