about summary refs log tree commit diff
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2020-04-05T15·13+0100
committerWilliam Carroll <wpcarro@gmail.com>2020-04-05T15·13+0100
commit5cc9bf7dceca31871c84c6f883b7487f2947ddfa (patch)
treeb55253f7d098987c1df53704f27f45f4dde3526a
parent81b59e9ddd36eeab8d662ef2326229b3ca48d861 (diff)
Remove //java
When I started working on //clojure, which I also deleted, I wanted to
learn more about how to package Java projects using Nix. This was a part
of that study.
-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());
-  }
-}