mirror of
https://github.com/johndoe6345789/tustu.git
synced 2026-04-24 13:45:00 +00:00
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.
24 lines
703 B
Java
24 lines
703 B
Java
package bF;
|
|
|
|
import java.awt.event.MouseAdapter;
|
|
import java.awt.event.MouseEvent;
|
|
|
|
class MouseAdapterExtensionMousepressed extends MouseAdapter {
|
|
MouseAdapterExtensionMousepressed(D paramD) {}
|
|
|
|
public void mousePressed(MouseEvent paramMouseEvent) {
|
|
if (paramMouseEvent.getButton() == 3)
|
|
this.a.a(paramMouseEvent.getX(), paramMouseEvent.getY());
|
|
}
|
|
|
|
public void mouseClicked(MouseEvent paramMouseEvent) {
|
|
if (paramMouseEvent.getButton() == 3)
|
|
this.a.b(paramMouseEvent.getX(), paramMouseEvent.getY());
|
|
}
|
|
}
|
|
|
|
|
|
/* Location: /home/rewrich/Downloads/TunerStudioMS/TunerStudioMS/!/bF/P.class
|
|
* Java compiler version: 8 (52.0)
|
|
* JD-Core Version: 1.1.3
|
|
*/ |