renamed all modules
This commit is contained in:
26
testdata/src/main/java/data/Simple.java
vendored
Normal file
26
testdata/src/main/java/data/Simple.java
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
package data;
|
||||
|
||||
/**
|
||||
* Simple class that runs a method. Can we update the method without restarting the JVM.
|
||||
*/
|
||||
public class Simple {
|
||||
|
||||
public static void main(String[] argv) {
|
||||
Simple s = new Simple();
|
||||
s.run();
|
||||
}
|
||||
|
||||
public void run() {
|
||||
System.out.println("Hello World3");
|
||||
}
|
||||
|
||||
public static void runStatic() {
|
||||
System.out.println("Hello World from static2");
|
||||
}
|
||||
|
||||
public void newmethod() {
|
||||
System.out.println();
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user