update for support of modern JDKs #113
@@ -479,7 +479,7 @@ public class FuncState extends Constants {
|
||||
return ((Integer) h.get(v)).intValue();
|
||||
}
|
||||
final int idx = this.nk;
|
||||
this.h.put(v, Integer.valueOf(idx));
|
||||
this.h.put(v, new Integer(idx));
|
||||
final Prototype f = this.f;
|
||||
if (f.k == null || nk + 1 >= f.k.length)
|
||||
f.k = realloc( f.k, nk*2 + 1 );
|
||||
|
||||
Reference in New Issue
Block a user