Removed demo code

This commit is contained in:
Marvin Scham
2023-05-23 07:11:52 +02:00
parent 70221d26a6
commit 748c65b1be
3 changed files with 0 additions and 41 deletions

View File

@@ -1,16 +0,0 @@
package de.rwu.easydrop.demo;
/**
* Demo-Class.
*/
public final class DemoClass {
/**
* Demo-Method inverting a boolean.
*
* @param bool Input Boolean
* @return Inverted Boolean
*/
public boolean invertBool(final boolean bool) {
return !bool;
}
}

View File

@@ -1,6 +0,0 @@
/**
* Package for demo purposes.
*
* @todo implement
*/
package de.rwu.easydrop.demo;