Add script to fix misnamed constructors in Java files

This commit introduces a new Python script, `fix_constructors_v2.py`, which automates the process of correcting constructor names in Java files based on Gradle error outputs. The script scans specified Java files, identifies constructors that do not match their class names, and updates them accordingly. It handles various edge cases, ensuring that only relevant constructors are modified. The script also provides feedback on the changes made during execution.
This commit is contained in:
2026-01-11 20:45:07 +00:00
parent 85634e7c37
commit a17fd820b6
149 changed files with 229 additions and 801 deletions

View File

@@ -13,7 +13,7 @@ class CommDebugLogWriter extends Thread {
int c = 0;
P(J paramJ) {
CommDebugLogWriter(J paramJ) {
setName("CommDebugLogWriter");
setDaemon(true);
setPriority(1);