Integration CI mit SonarQube
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
/**
|
||||
* Dieses Paket beinhaltet ist zu Demo-Zwecken.
|
||||
*
|
||||
* @since 0.1-SNAPSHOT
|
||||
*/
|
||||
package de.rwu.easydrop.demo;
|
||||
Reference in New Issue
Block a user