added jquery and js to project
This commit is contained in:
@ -1,15 +1,7 @@
|
||||
public class main {
|
||||
public static void main(String[] args) {
|
||||
Thread mythread = new Thread(new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
new Webserver().startserver();
|
||||
}
|
||||
});
|
||||
Thread mythread = new Thread(() -> new Webserver().startserver());
|
||||
mythread.start();
|
||||
System.out.println("thread started");
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user