Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Unified Diff: mojo/public/java/bindings/src/org/chromium/mojo/bindings/Decoder.java

Issue 2548013002: Remove redundant field initialization in Java code. (Closed)
Patch Set: rebase Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: mojo/public/java/bindings/src/org/chromium/mojo/bindings/Decoder.java
diff --git a/mojo/public/java/bindings/src/org/chromium/mojo/bindings/Decoder.java b/mojo/public/java/bindings/src/org/chromium/mojo/bindings/Decoder.java
index 6898f93e099826c1e50e814233b7406b49f2279a..64ff1c08a1fc1bd55f6a0047e0e7ef583f0257b0 100644
--- a/mojo/public/java/bindings/src/org/chromium/mojo/bindings/Decoder.java
+++ b/mojo/public/java/bindings/src/org/chromium/mojo/bindings/Decoder.java
@@ -29,11 +29,11 @@ public class Decoder {
/**
* Minimal value for the next handle to deserialize.
*/
- private int mMinNextClaimedHandle = 0;
+ private int mMinNextClaimedHandle;
/**
* Minimal value of the start of the next memory to claim.
*/
- private long mMinNextMemory = 0;
+ private long mMinNextMemory;
/**
* The current nesting level when decoding.
*/

Powered by Google App Engine
This is Rietveld 408576698