replaced Algorythm and made it way faster

This commit is contained in:
BlyDoesCoding 2023-03-24 23:17:14 +01:00
parent 016cb13298
commit 718b587df5
3 changed files with 13 additions and 4 deletions

14
.idea/workspace.xml generated
View file

@ -9,7 +9,7 @@
<option name="autoReloadType" value="SELECTIVE" /> <option name="autoReloadType" value="SELECTIVE" />
</component> </component>
<component name="ChangeListManager"> <component name="ChangeListManager">
<list default="true" id="9b57ac51-c870-474b-9dfd-64a5fc490635" name="Changes" comment="Fix MD"> <list default="true" id="9b57ac51-c870-474b-9dfd-64a5fc490635" name="Changes" comment="replaced Algorythm and made it way faster">
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" /> <change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/src/Main.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/Main.java" afterDir="false" /> <change beforePath="$PROJECT_DIR$/src/Main.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/Main.java" afterDir="false" />
<change beforePath="$PROJECT_DIR$/src/ThreadedCompare.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/ThreadedCompare.java" afterDir="false" /> <change beforePath="$PROJECT_DIR$/src/ThreadedCompare.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/ThreadedCompare.java" afterDir="false" />
@ -269,7 +269,14 @@
<option name="project" value="LOCAL" /> <option name="project" value="LOCAL" />
<updated>1679508468115</updated> <updated>1679508468115</updated>
</task> </task>
<option name="localTasksCounter" value="26" /> <task id="LOCAL-00026" summary="replaced Algorythm and made it way faster">
<created>1679688274094</created>
<option name="number" value="00026" />
<option name="presentableId" value="LOCAL-00026" />
<option name="project" value="LOCAL" />
<updated>1679688274094</updated>
</task>
<option name="localTasksCounter" value="27" />
<servers /> <servers />
</component> </component>
<component name="Vcs.Log.Tabs.Properties"> <component name="Vcs.Log.Tabs.Properties">
@ -314,7 +321,8 @@
<MESSAGE value="Prepare for Aur Package" /> <MESSAGE value="Prepare for Aur Package" />
<MESSAGE value="AUR Package instructions" /> <MESSAGE value="AUR Package instructions" />
<MESSAGE value="Fix MD" /> <MESSAGE value="Fix MD" />
<option name="LAST_COMMIT_MESSAGE" value="Fix MD" /> <MESSAGE value="replaced Algorythm and made it way faster" />
<option name="LAST_COMMIT_MESSAGE" value="replaced Algorythm and made it way faster" />
</component> </component>
<component name="XDebuggerManager"> <component name="XDebuggerManager">
<breakpoint-manager> <breakpoint-manager>

View file

@ -158,7 +158,7 @@ public class Main {
} }
} }
// new algo
List<Path> allTheFilesWillBeDeleted = new ArrayList<>(); List<Path> allTheFilesWillBeDeleted = new ArrayList<>();

View file

@ -14,6 +14,7 @@ public class ThreadedCompare extends Thread {
this.pathsToCompareTo = pathsToCompareTo; this.pathsToCompareTo = pathsToCompareTo;
} }
@Override @Override
public void run() { public void run() {