booster icon indicating copy to clipboard operation
booster copied to clipboard

new Thread的匿名内部类的写法不会被替换

Open romantiskt opened this issue 2 years ago • 0 comments

最新版本,当new Thread使用下面写法不会被替换成ShadowThread

Thread thread = new Thread() {
            @Override
            public void run() {
              super.run();
            }
}

romantiskt avatar Sep 22 '23 09:09 romantiskt