summaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/launcher
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/vaadin/launcher')
-rw-r--r--src/com/vaadin/launcher/util/BrowserLauncher.java3
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.