Skip to content

Commit 4da3b30

Browse files
committed
Refactor path
1 parent 48159e4 commit 4da3b30

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Simple and easy to understand code examples for most of the Concurrent APIs prov
1212
- [Callable](./src/com/codecafe/concurrency/thread/basics/designathread/CallableDemo.java)
1313
- [ExecutorService](notes/executorservice.md) - [[code](./src/com/codecafe/concurrency/executorservice/ExecutorServiceDemo.java)]
1414
- [Thread States](./notes/thread-states.md) - [[code](./src/com/codecafe/concurrency/thread/basics/designathread/ThreadStates.java)]
15-
- [Thread Termination](./src/com/codecafe/concurrency/thread/basics/Main.java)
15+
- [Thread Termination](./src/com/codecafe/concurrency/thread/threadtermination/Main.java)
1616
- [Joining Threads](./src/com/codecafe/concurrency/thread/joiningthreads/Main.java)
1717
- [Thread Signalling](./src/com/codecafe/concurrency/threadsignalling)
1818
- [Daemon Threads](./notes/daemon-threads.md) - [[code](./src/com/codecafe/concurrency/thread/daemonthreads/Main.java)]

src/com/codecafe/concurrency/thread/basics/Main.java renamed to src/com/codecafe/concurrency/thread/threadtermination/Main.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.codecafe.concurrency.thread.basics;
1+
package com.codecafe.concurrency.thread.threadtermination;
22

33
class LongComputationTask implements Runnable {
44

0 commit comments

Comments
 (0)