diff options
author | Feng Xiao <xfxyjwf@gmail.com> | 2016-07-18 10:36:04 -0700 |
---|---|---|
committer | Feng Xiao <xfxyjwf@gmail.com> | 2016-07-18 10:36:04 -0700 |
commit | 82b43d1f41d6c374ebdd942dd86602736c2218e8 (patch) | |
tree | fc46bff361c1c3f21220a44b17d1cd2d980c7d06 /java | |
parent | 3d9726f919cbbc403538c5a09649c6bf38561fef (diff) |
Remove Java deterministic API.
Change-Id: I43f7e04a53d1445dfa86db310bdb18ceb446398c
Diffstat (limited to 'java')
-rw-r--r-- | java/core/src/main/java/com/google/protobuf/CodedOutputStream.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/core/src/main/java/com/google/protobuf/CodedOutputStream.java b/java/core/src/main/java/com/google/protobuf/CodedOutputStream.java index 4f5a9b77..e5515285 100644 --- a/java/core/src/main/java/com/google/protobuf/CodedOutputStream.java +++ b/java/core/src/main/java/com/google/protobuf/CodedOutputStream.java @@ -173,7 +173,7 @@ public abstract class CodedOutputStream extends ByteOutput { * maps are sorted on the lexicographical order of the UTF8 encoded keys. * </ul> */ - public final void useDeterministicSerialization() { + void useDeterministicSerialization() { serializationDeterministic = true; } |