Commit c66cca96 authored by yanzg's avatar yanzg

压缩处理

parent 8468bffd
......@@ -110,7 +110,7 @@ public final class RunnableListAuto {
threadCount = threadCount - 1;
}
threadCount = Math.min(threadCount, methods.size());
int finalThreadCount = threadCount;
final int finalThreadCount = threadCount;
// 打印线程顺序
if (IsLog) {
......
......@@ -24,7 +24,7 @@ public class ThreadNext {
int getNextTime();
}
public static void start(Next next, String error) {
public static void start(final Next next, String error) {
if (next == null) {
return;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment