I have a class that extends Checkbox Item and its functionality is to put in a hash map the current value of it. It is not a problem with the name String variable as in Firefox same code behaves as expected.It appears in Google Chrome after letting it run for long period(10-12 hours).
Code:
public void onEditorEnter(EditorEnterEvent event) { /*some code */ } public void onEditorExit(EditorExitEvent event) { map.put(name, getValueAsBoolean() ? 1.0 : 0.0); }
Comment