-
```
It would be useful to have the behaviour for computing hashcodes as recommended in Effective
Java Item 8 included as a library function. See
http://java.sun.com/developer/Books/effectivejava/C…
-
```
I am running edu.berkeley.nlp.lm.io.MakeKneserNeyArpaFromText on some German
text but keep running into an ArrayIndexOutOfBoundsException exception. If I
try to build a model from very limited d…
-
```
The method "public native int KeyPressEvent.getCharacterValue()" causes an
"Expected primitive type int; actual value was undefined" exception when
the user presses a non-character key like shift,…
-
```
The following code:
ArgumentCaptor capturedCount = new ArgumentCaptor();
verify(mock).someMethod(capturedCount.capture());
will throw an NPE on the verify line if someMethod() takes a pr…
-
```
This is a contribution to the "add a sampling CPU profiler" from the TODO list
#10.
The attached files comes from MessAdmin (http://messadmin.sourceforge.net).
There are some references to i18n …
-
```
The following code:
ArgumentCaptor capturedCount = new ArgumentCaptor();
verify(mock).someMethod(capturedCount.capture());
will throw an NPE on the verify line if someMethod() takes a pr…
-
```
This is a contribution to the "add a sampling CPU profiler" from the TODO list
#10.
The attached files comes from MessAdmin (http://messadmin.sourceforge.net).
There are some references to i18n …
-
```
Current Behavior:
autoboxing is used when primitive values are used as keys which reduces
performance.
Desired Behavior:
create CLHM classes for each primitve type for the keys of the map to ele…
-
```
The method "public native int KeyPressEvent.getCharacterValue()" causes an
"Expected primitive type int; actual value was undefined" exception when
the user presses a non-character key like shift,…
-
```
I'm using the SQL Visualizer to check which classes are most often
instanciated to determine what causes GC pressure. To do this, I'm looking
for calls of functions ending with ".ctor". However,…