clean up language (#9577)

* clean up language

@logophile

* Update lite.md
pull/9614/head
Elliotte Rusty Harold 3 years ago committed by GitHub
parent 7d5af9d539
commit 3adfa9afc5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 19
      java/lite.md

@ -4,27 +4,26 @@ Copyright 2008 Google Inc.
https://developers.google.com/protocol-buffers/
## Use Protobuf Java Lite Runtime
## Use the Protobuf Java Lite Runtime
Protobuf Java Lite runtime is separated from the main Java runtime because
it's designed/implemented with different constraints. In particular, Java
Lite runtime has a much smaller code size which makes it more suitable to
be used on Android.
The Protobuf Java Lite runtime is separated from the main Java runtime because
it's designed and implemented with different constraints. In particular, the Java
Lite runtime is much smaller which makes it more suitable to be used on Android.
Note that in order to achieve maximum performance and code size, we will
In order to achieve maximum performance and code size, we do
NOT guarantee API/ABI stability for Java Lite. If this is not acceptable
for your use-case, please use the full Java runtime instead. Note that
for your use-case, use the full Java runtime instead. Note that
the latest version of Java Lite is not compatible with the 3.0.0 version.
You can generate Java Lite code for your .proto files:
$ protoc --java_out=lite:${OUTPUT_DIR} path/to/your/proto/file
Note that "optimize_for = LITE_RUNTIME" option in proto file is deprecated
and will not have any effect any more.
The "optimize_for = LITE_RUNTIME" option in the .proto file no longer has any
effect on Java code.
Include the generated Java files in your project and add a dependency on the
protobuf Java runtime. If you are using Maven, use the following:
protobuf Java Lite runtime. If you are using Maven, include the following:
```xml
<dependency>

Loading…
Cancel
Save