mirror of
https://github.com/slhaf/Partner.git
synced 2026-05-12 16:53:04 +08:00
refactor(project): normalize formatting and reorder class members across modules
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
public interface InterfaceTest {
|
||||
default String getName(){
|
||||
default String getName() {
|
||||
return "111";
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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");
|
||||
}
|
||||
|
||||
@@ -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());
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user