Skip to content

Commit

Permalink
Revert
Browse files Browse the repository at this point in the history
  • Loading branch information
Matyrobbrt committed Mar 19, 2024
1 parent 56b720d commit a75af2b
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions src/main/java/test/Something.java
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
package test;

public abstract class Something {
public class Something {
public static void main(String[] args) {
System.out.println("A");
}

public final String field1 = "a";
public String field1;

abstract void hi();
public void hi() {

public static class C1 {
}

public static class C1 implements Runnable {
@Override
public void run() {

}
Expand Down

0 comments on commit a75af2b

Please sign in to comment.