import public in proto2 handled in Java/Kotlin
I'm starting a project, which involves some grpc and proto2 communication (already existing for years and used in some other software). I have multiple proto2 files and they are joined together by import, like below:
syntax = "proto2";
import public "Models.proto";
import public "Others.proto";
...
this doesn't work in Java/Kotlin as noted in
DOC
Note that the public...