refactor(project): normalize formatting and reorder class members across modules

This commit is contained in:
2026-02-20 17:22:54 +08:00
parent c47d2b2285
commit bbace28d7a
102 changed files with 706 additions and 492 deletions

View File

@@ -1,5 +1,5 @@
public interface InterfaceTest {
default String getName(){
default String getName() {
return "111";
}
}

View File

@@ -2,7 +2,7 @@ public class TestA {
public static void main(String[] args) {
try {
int a = 1 / 0;
}catch (Exception ignore) {
} catch (Exception ignore) {
}
System.out.println("111");
}

View File

@@ -1,9 +1,9 @@
import org.junit.jupiter.api.Test;
public class TestImpl implements InterfaceTest{
public class TestImpl implements InterfaceTest {
@Test
public void test(){
public void test() {
System.out.println(getName());
}
}