@@ -44,7 +44,7 @@ of this software and associated documentation files (the "Software"), to deal
44
44
* ADEQUATELY FOR PRODUCTION USE.
45
45
*
46
46
* @author JSON.org
47
- * @version 2014-05-03
47
+ * @version 2014-05-20
48
48
*/
49
49
public abstract class JSONzip implements None ,PostMortem {
50
50
/**
@@ -55,29 +55,29 @@ public abstract class JSONzip implements None, PostMortem {
55
55
};
56
56
57
57
/**
58
- * Thefirst positive integer than cannot be encoded in 4 bits .
58
+ * Theend of string code .
59
59
*/
60
- public static final long int4 =16 ;
60
+ public static final int end =256 ;
61
61
62
62
/**
63
- * Thefirst positive integer than cannot be encoded in 7 bits .
63
+ * Theend of number code .
64
64
*/
65
- public static final long int7 =144 ;
65
+ public static final int endOfNumber =bcd . length ;
66
66
67
67
/**
68
- * The first positive integerthan cannot be encoded in14 bits.
68
+ * The first positive integerthat cannot be encoded in4 bits.
69
69
*/
70
- public static final long int14 =16528 ;
70
+ public static final long int4 =16 ;
71
71
72
72
/**
73
- * Theend of string code .
73
+ * Thefirst positive integer that cannot be encoded in 7 bits .
74
74
*/
75
- public static final int end =256 ;
75
+ public static final long int7 =144 ;
76
76
77
77
/**
78
- * Theend of number code .
78
+ * Thefirst positive integer that cannot be encoded in 14 bits .
79
79
*/
80
- public static final int endOfNumber =bcd . length ;
80
+ public static final long int14 =16528 ;
81
81
82
82
/**
83
83
* The package supports tracing for debugging.
@@ -177,6 +177,7 @@ protected JSONzip() {
177
177
*/
178
178
protected void generate () {
179
179
this .namehuff .generate ();
180
+ this .namehuffext .generate ();
180
181
this .stringhuff .generate ();
181
182
this .stringhuffext .generate ();
182
183
}