NoIssue: Clean-up

This commit is contained in:
Minimons
2025-11-26 15:09:58 +01:00
parent 3f93793be4
commit c947c9fbf1

View File

@@ -1,13 +0,0 @@
package com.r35157.libs.random.impl.ref;
import com.r35157.libs.random.SomeInterface;
public class SomeImpl implements SomeInterface {
public String concat(String x, String y) {
return x + y;
}
public void divideByZero() throws ArithmeticException {
int a = 0/0;
}
}