Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2011-03-17 14:45:56 +0000
committerThomas Watson2011-03-17 14:45:56 +0000
commit0cfb13f0d0402260eae64b5b31846fc57c867c64 (patch)
tree8dfac8648ed167f3291259ed110dc291a3769bea /bundles/org.eclipse.equinox.app/src
parent52b4e73a278e9bd40e1ff03b562de50e16abb4f0 (diff)
downloadrt.equinox.bundles-0cfb13f0d0402260eae64b5b31846fc57c867c64.tar.gz
rt.equinox.bundles-0cfb13f0d0402260eae64b5b31846fc57c867c64.tar.xz
rt.equinox.bundles-0cfb13f0d0402260eae64b5b31846fc57c867c64.zip
Use Boolean.FALSE.
Diffstat (limited to 'bundles/org.eclipse.equinox.app/src')
-rwxr-xr-xbundles/org.eclipse.equinox.app/src/org/eclipse/equinox/internal/app/AppCommands.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.app/src/org/eclipse/equinox/internal/app/AppCommands.java b/bundles/org.eclipse.equinox.app/src/org/eclipse/equinox/internal/app/AppCommands.java
index 4e2821ae1..2a2db2617 100755
--- a/bundles/org.eclipse.equinox.app/src/org/eclipse/equinox/internal/app/AppCommands.java
+++ b/bundles/org.eclipse.equinox.app/src/org/eclipse/equinox/internal/app/AppCommands.java
@@ -366,7 +366,7 @@ public class AppCommands implements CommandProvider {
public Object _help(CommandInterpreter intp) {
String commandName = intp.nextArgument();
if (commandName == null) {
- return new Boolean(false);
+ return Boolean.FALSE;
}
String help = getHelp(commandName);

Back to the top