summaryrefslogtreecommitdiffstats
path: root/uitest
diff options
context:
space:
mode:
authorHenri Sara <hesara@vaadin.com>2016-04-28 09:41:36 +0300
committerHenri Sara <hesara@vaadin.com>2016-04-28 09:41:36 +0300
commitb5d5a92208d36e8db13aa470b58201d62bc2cb36 (patch)
tree68f11edfabb5f50226553ed13276ab56496bae63 /uitest
parent553e614b51a7a063e1d105daa737ec2c24ba5c02 (diff)
downloadvaadin-framework-b5d5a92208d36e8db13aa470b58201d62bc2cb36.tar.gz
vaadin-framework-b5d5a92208d36e8db13aa470b58201d62bc2cb36.zip
Fix formatting of VaadinBrowserFactory
Change-Id: I9b650faf2c35d64230b65791fcc28be2c421f0e6
Diffstat (limited to 'uitest')
-rw-r--r--uitest/src/test/java/com/vaadin/tests/tb3/VaadinBrowserFactory.java14
1 files changed, 8 insertions, 6 deletions
diff --git a/uitest/src/test/java/com/vaadin/tests/tb3/VaadinBrowserFactory.java b/uitest/src/test/java/com/vaadin/tests/tb3/VaadinBrowserFactory.java
index 19ef7a5db1..2389811ff0 100644
--- a/uitest/src/test/java/com/vaadin/tests/tb3/VaadinBrowserFactory.java
+++ b/uitest/src/test/java/com/vaadin/tests/tb3/VaadinBrowserFactory.java
@@ -1,12 +1,12 @@
/*
* Copyright 2000-2014 Vaadin Ltd.
- *
+ *
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
- *
+ *
* http://www.apache.org/licenses/LICENSE-2.0
- *
+ *
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
@@ -27,7 +27,7 @@ import com.vaadin.testbench.parallel.TestBenchBrowserFactory;
public class VaadinBrowserFactory extends DefaultBrowserFactory {
- TestBenchBrowserFactory delegate = null;
+ TestBenchBrowserFactory delegate = null;
@Override
public DesiredCapabilities create(Browser browser) {
@@ -42,14 +42,16 @@ public class VaadinBrowserFactory extends DefaultBrowserFactory {
.getClassLoader().loadClass(browserFactoryClass)
.newInstance();
} catch (Exception e) {
- getLogger().warning("Failed to instantiate browser factory " + browserFactoryClass);
+ getLogger().warning(
+ "Failed to instantiate browser factory "
+ + browserFactoryClass);
throw new RuntimeException(e);
}
}
return delegate.create(browser);
}
- return doCreate(browser);
+ return doCreate(browser);
}
public DesiredCapabilities doCreate(Browser browser) {