Skip to content
Snippets Groups Projects
Commit 0efe3554 authored by NET-D3v3l0p3r's avatar NET-D3v3l0p3r
Browse files

Refactoring

parent ccbc70bc
No related branches found
No related tags found
No related merge requests found
# Default ignored files
/shelf/
/workspace.xml
# Datasource local storage ignored files
/../../../../../../../:\Users\enesh\Desktop\BachelorProjekt\parallelpathfinding\.idea/dataSources/
/dataSources.local.xml
# Editor-based HTTP Client requests
/httpRequests/
...@@ -5,53 +5,6 @@ public class Program { ...@@ -5,53 +5,6 @@ public class Program {
public static void main(String[] args) throws Exception { public static void main(String[] args) throws Exception {
/*
EagerWorkingThread workingThread = new EagerWorkingThread() {
@Override
public void onBegin() {
System.out.println("--- Begin ---");
}
@Override
public void onTrigger() {
try {
Thread.sleep(2000);
System.out.println("Triggered.");
} catch (InterruptedException e) {
e.printStackTrace();
}
}
@Override
public void onEnd() {
System.out.println("--- End ---");
}
};
workingThread.setAllowRunning(true);
workingThread.start();
workingThread.trigger();
System.out.println("Triggering #1");
workingThread.trigger();
System.out.println("Triggering #2");
workingThread.trigger();
System.out.println("Triggering #3");
Thread.sleep(10000);
System.out.println(System.nanoTime());
workingThread.trigger();
System.out.println(System.nanoTime());
*/
MainWindow window = new MainWindow("Pathfinder v1", 1080, 1080); MainWindow window = new MainWindow("Pathfinder v1", 1080, 1080);
window.run(); window.run();
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
<component name="NewModuleRootManager" inherit-compiler-output="true"> <component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output /> <exclude-output />
<content url="file://$MODULE_DIR$"> <content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" /> <sourceFolder url="file://$MODULE_DIR$/Semester/src" isTestSource="false" />
</content> </content>
<orderEntry type="inheritedJdk" /> <orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" /> <orderEntry type="sourceFolder" forTests="false" />
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment