Skip to content

Commit

Permalink
Remove Java deterministic API.
Browse files Browse the repository at this point in the history
Change-Id: I43f7e04a53d1445dfa86db310bdb18ceb446398c
  • Loading branch information
xfxyjwf committed Jul 18, 2016
1 parent 3d9726f commit 82b43d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
5 changes: 1 addition & 4 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
2016-07-15 version 3.0.0-beta-4 (C++/Java/Python/Ruby/Objective-C/C#/JavaScript)
General
* Added a deterministic serialization API for C++ and Java. The deterministic
* Added a deterministic serialization API for C++. The deterministic
serialization guarantees that given a binary, equal messages will be
serialized to the same bytes. This allows applications like MapReduce to
group equal messages based on the serialized bytes. The deterministic
Expand Down Expand Up @@ -36,9 +36,6 @@
* Various performance optimizations.

Java (beta)
* Introduced a deterministic serialization API in
CodedOutputStream#useDeterministicSerialization(). See the notes about
deterministic serialization in the General section.
* File option "java_generate_equals_and_hash" is now deprecated. equals() and
hashCode() methods are generated by default.
* Added a new JSON printer option "omittingInsignificantWhitespace" to produce
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ public static CodedOutputStream newInstance(ByteBuffer byteBuffer) {
* maps are sorted on the lexicographical order of the UTF8 encoded keys.
* </ul>
*/
public final void useDeterministicSerialization() {
void useDeterministicSerialization() {
serializationDeterministic = true;
}

Expand Down

0 comments on commit 82b43d1

Please sign in to comment.