Remove vaadin tests (#2257)
* Refactor Vaadin samples * Refactor Vaadin samples
This commit is contained in:
committed by
GitHub
parent
3718dfd0d1
commit
4233d90902
@@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user