about summary refs log tree commit diff
path: root/java
diff options
context:
space:
mode:
Diffstat (limited to 'java')
-rw-r--r--java/Another.java5
-rw-r--r--java/Main.java6
2 files changed, 0 insertions, 11 deletions
diff --git a/java/Another.java b/java/Another.java
deleted file mode 100644
index e431e157336b..000000000000
--- a/java/Another.java
+++ /dev/null
@@ -1,5 +0,0 @@
-public class Another {
-  public static String whatis() {
-    return "Testing";
-  }
-}
diff --git a/java/Main.java b/java/Main.java
deleted file mode 100644
index 0bfa9ebc2a34..000000000000
--- a/java/Main.java
+++ /dev/null
@@ -1,6 +0,0 @@
-public class Main {
-  public static void main(String[] args) {
-    System.out.println(System.getProperty("java.class.path"));
-    System.out.println(Another.whatis());
-  }
-}