Skip to content

Commit aab1017

Browse files
this.namehuffext.generate
1 parent 1272d80 commit aab1017

File tree

1 file changed

+12
-11
lines changed

1 file changed

+12
-11
lines changed

zip/JSONzip.java

+12-11
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ of this software and associated documentation files (the "Software"), to deal
4444
* ADEQUATELY FOR PRODUCTION USE.
4545
*
4646
* @author JSON.org
47-
* @version 2014-05-03
47+
* @version 2014-05-20
4848
*/
4949
public abstract class JSONzip implements None, PostMortem {
5050
/**
@@ -55,29 +55,29 @@ public abstract class JSONzip implements None, PostMortem {
5555
};
5656

5757
/**
58-
* The first positive integer than cannot be encoded in 4 bits.
58+
* The end of string code.
5959
*/
60-
public static final long int4 = 16;
60+
public static final int end = 256;
6161

6262
/**
63-
* The first positive integer than cannot be encoded in 7 bits.
63+
* The end of number code.
6464
*/
65-
public static final long int7 = 144;
65+
public static final int endOfNumber = bcd.length;
6666

6767
/**
68-
* The first positive integer than cannot be encoded in 14 bits.
68+
* The first positive integer that cannot be encoded in 4 bits.
6969
*/
70-
public static final long int14 = 16528;
70+
public static final long int4 = 16;
7171

7272
/**
73-
* The end of string code.
73+
* The first positive integer that cannot be encoded in 7 bits.
7474
*/
75-
public static final int end = 256;
75+
public static final long int7 = 144;
7676

7777
/**
78-
* The end of number code.
78+
* The first positive integer that cannot be encoded in 14 bits.
7979
*/
80-
public static final int endOfNumber = bcd.length;
80+
public static final long int14 = 16528;
8181

8282
/**
8383
* The package supports tracing for debugging.
@@ -177,6 +177,7 @@ protected JSONzip() {
177177
*/
178178
protected void generate() {
179179
this.namehuff.generate();
180+
this.namehuffext.generate();
180181
this.stringhuff.generate();
181182
this.stringhuffext.generate();
182183
}

0 commit comments

Comments
 (0)