Removed desktop path detection. Was too ugly and unreliable.
authorSvjatoslav Agejenko <svjatoslav@svjatoslav.eu>
Sun, 7 Feb 2021 20:35:00 +0000 (22:35 +0200)
committerSvjatoslav Agejenko <svjatoslav@svjatoslav.eu>
Sun, 7 Feb 2021 20:35:00 +0000 (22:35 +0200)
src/test/java/eu/svjatoslav/commons/file/CommonPathResolverTest.java [deleted file]

diff --git a/src/test/java/eu/svjatoslav/commons/file/CommonPathResolverTest.java b/src/test/java/eu/svjatoslav/commons/file/CommonPathResolverTest.java
deleted file mode 100755 (executable)
index ad75885..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-/*
- * Svjatoslav Commons - shared library of common functionality. Author: Svjatoslav Agejenko.
- * This project is released under Creative Commons Zero (CC0) license.
- */
-package eu.svjatoslav.commons.file;
-
-import org.junit.Test;
-
-public class CommonPathResolverTest {
-
-    @Test
-    public final void testGetDesktopDirectory() {
-        System.out.println(CommonPathResolver.getDesktopDirectory());
-    }
-
-    @Test
-    public final void testGetHomeDirectory() {
-        System.out.println(CommonPathResolver.getHomeDirectory());
-    }
-
-}