Skip to content
Snippets Groups Projects
Commit 42fad8e7 authored by Yang Gao's avatar Yang Gao
Browse files

Merge pull request #5041 from ejona86/sync-protos

Sync java options in example protos
parents 4d7ae301 04c97a17
No related branches found
No related tags found
No related merge requests found
// Copyright 2015, Google Inc. // Copyright 2015-2016, Google Inc.
// All rights reserved. // All rights reserved.
// //
// Redistribution and use in source and binary forms, with or without // Redistribution and use in source and binary forms, with or without
...@@ -29,7 +29,9 @@ ...@@ -29,7 +29,9 @@
syntax = "proto3"; syntax = "proto3";
option java_package = "io.grpc.examples"; option java_multiple_files = true;
option java_package = "io.grpc.examples.helloworld";
option java_outer_classname = "HelloWorldProto";
option objc_class_prefix = "HLW"; option objc_class_prefix = "HLW";
package helloworld; package helloworld;
......
// Copyright 2015, Google Inc. // Copyright 2015-2016, Google Inc.
// All rights reserved. // All rights reserved.
// //
// Redistribution and use in source and binary forms, with or without // Redistribution and use in source and binary forms, with or without
...@@ -29,7 +29,9 @@ ...@@ -29,7 +29,9 @@
syntax = "proto3"; syntax = "proto3";
option java_package = "ex.grpc"; option java_multiple_files = true;
option java_package = "io.grpc.examples.routeguide";
option java_outer_classname = "RouteGuideProto";
option objc_class_prefix = "RTG"; option objc_class_prefix = "RTG";
package routeguide; package routeguide;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment