Remove vaadin tests (#2257)

* Refactor Vaadin samples

* Refactor Vaadin samples
This commit is contained in:
Grzegorz Piwowarek
2017-07-13 21:15:19 +02:00
committed by GitHub
parent 3718dfd0d1
commit 4233d90902
12 changed files with 87 additions and 193 deletions
@@ -6,11 +6,11 @@ import org.eclipse.jetty.server.ServerConnector;
import org.eclipse.jetty.servlet.ServletHandler;
import org.eclipse.jetty.util.thread.QueuedThreadPool;
public class JettyServer {
class JettyServer {
private Server server;
public void start() throws Exception {
void start() throws Exception {
int maxThreads = 100;
int minThreads = 10;
@@ -33,7 +33,7 @@ public class JettyServer {
}
public void stop() throws Exception {
void stop() throws Exception {
server.stop();
}
}