We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32306bc commit 2939020Copy full SHA for 2939020
1 file changed
library/src/main/java/com/queue/library/ThreadConfig.java
@@ -9,10 +9,10 @@
9
*/
10
public final class ThreadConfig {
11
12
- private final static AtomicInteger THREAD_ID_GENETOR = new AtomicInteger(1);
+ private final static AtomicInteger THREAD_ID_GENERATOR = new AtomicInteger(1);
13
14
public static int getUniqueThreadId() {
15
- return THREAD_ID_GENETOR.getAndIncrement();
+ return THREAD_ID_GENERATOR.getAndIncrement();
16
}
17
18
0 commit comments