diff options
author | Artur Signell <artur.signell@itmill.com> | 2010-08-30 14:08:32 +0000 |
---|---|---|
committer | Artur Signell <artur.signell@itmill.com> | 2010-08-30 14:08:32 +0000 |
commit | 7f5c49d6f58060fe09c059f54ac5d626f5437aad (patch) | |
tree | ad358981525d9fa539dae50ec21ea0de866db3ee /src/com/vaadin/launcher | |
parent | 6e11045b936c49c2d92ee4c2bdc73506e403e3c2 (diff) | |
download | vaadin-framework-7f5c49d6f58060fe09c059f54ac5d626f5437aad.tar.gz vaadin-framework-7f5c49d6f58060fe09c059f54ac5d626f5437aad.zip |
Eclipse code cleanup
svn changeset:14660/svn branch:6.4
Diffstat (limited to 'src/com/vaadin/launcher')
-rw-r--r-- | src/com/vaadin/launcher/util/BrowserLauncher.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/com/vaadin/launcher/util/BrowserLauncher.java b/src/com/vaadin/launcher/util/BrowserLauncher.java index 9b7448c9ca..0edfa78f8a 100644 --- a/src/com/vaadin/launcher/util/BrowserLauncher.java +++ b/src/com/vaadin/launcher/util/BrowserLauncher.java @@ -49,8 +49,9 @@ public class BrowserLauncher { // See if the default browser is Konqueror.
File file = new File(defaultLinkPath);
String canonical = file.getCanonicalPath();
- if (canonical.indexOf("konqueror") != -1)
+ if (canonical.indexOf("konqueror") != -1) {
isDefaultKonqueror = true;
+ }
}
} catch (IOException e1) {
// The symlink was probably not found, so this is ok.
|