Refactor code structure for improved readability and maintainability

This commit is contained in:
2026-01-11 23:19:43 +00:00
parent fa4bc32ceb
commit 80cec51597
12 changed files with 6 additions and 6 deletions

View File

@@ -13,7 +13,7 @@ public class HeatMapDataAdapter implements cD, TableModelListener {
ArrayList a = new ArrayList();
public v(s params) {
public HeatMapDataAdapter(s params) {
this.b = params;
params.addTableModelListener(this);
}

View File

@@ -5,7 +5,7 @@ public class SelectedPoint implements ef {
int a;
public r(int paramInt1, int paramInt2) {
public SelectedPoint(int paramInt1, int paramInt2) {
this.b = paramInt1;
this.a = paramInt2;
}

View File

@@ -104,7 +104,7 @@ public class TableEditorPanel extends JPanel implements TableModelListener {
private boolean F = false;
public w(s params) {
public TableEditorPanel(s params) {
this();
ExceptionInVPackage(params);
}

View File

@@ -11,7 +11,7 @@ class PageRefreshRequest {
private int e = Integer.MAX_VALUE;
l(j paramj, R paramR, int paramInt) {
PageRefreshRequest(j paramj, R paramR, int paramInt) {
this.b = paramR;
this.c = paramInt;
}

View File

@@ -7,7 +7,7 @@ class PcVariableRefreshRequest {
private String c = null;
public i(g paramg, R paramR) {
public PcVariableRefreshRequest(g paramg, R paramR) {
this.b = paramR;
}

File diff suppressed because one or more lines are too long