We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dde4425 commit 81c4516Copy full SHA for 81c4516
1 file changed
org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/debug/ui/JavaUISourceLocator.java
@@ -322,10 +322,10 @@ public void initializeFromMemento(String memento) throws CoreException {
322
index = memento.indexOf("</findAll>", start); //$NON-NLS-1$
323
if (index > 0) {
324
String findAll = memento.substring(start, index);
325
- Boolean all = Boolean.valueOf(findAll);
+ boolean all = Boolean.parseBoolean(findAll);
326
String rest = memento.substring(index + 10);
327
fJavaProject = (IJavaProject) JavaCore.create(handle);
328
- fIsFindAllSourceElements = all.booleanValue();
+ fIsFindAllSourceElements = all;
329
fSourceLocator.initializeFromMemento(rest);
330
}
331
0 commit comments