diff options
author | Yury Bandarchuk <YuryBandarchuk16@users.noreply.github.com> | 2016-06-23 21:30:32 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-23 21:30:32 +0300 |
commit | ec59dc026f5bf06b5b56f4d53928d5376281412f (patch) | |
tree | d4ad1b5066ba3e338b3555f1ff55ee76f2ebde7c /java | |
parent | c97abb1eea0ae19bdc7a25adde6f9129a51627c6 (diff) | |
download | flatbuffers-ec59dc026f5bf06b5b56f4d53928d5376281412f.tar.gz flatbuffers-ec59dc026f5bf06b5b56f4d53928d5376281412f.tar.bz2 flatbuffers-ec59dc026f5bf06b5b56f4d53928d5376281412f.zip |
Update Constants.java
Diffstat (limited to 'java')
-rw-r--r-- | java/com/google/flatbuffers/Constants.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/com/google/flatbuffers/Constants.java b/java/com/google/flatbuffers/Constants.java index c3b98c5e..f5906314 100644 --- a/java/com/google/flatbuffers/Constants.java +++ b/java/com/google/flatbuffers/Constants.java @@ -34,7 +34,7 @@ public class Constants { /** The number of bytes in an `long`. */ static final int SIZEOF_LONG = 8; /** The number of bytes in an `double`. */ - static final int SIZEOF_DOUBLE = 4; + static final int SIZEOF_DOUBLE = 8; /** The number of bytes in a file identifier. */ static final int FILE_IDENTIFIER_LENGTH = 4; } |