NoIssue: Initial autogenerated files (from 'module_setup-0.0.2.4')

This commit is contained in:
2025-12-26 15:48:21 +01:00
parent 7b834a4b5a
commit b736a91df2
16 changed files with 481 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package com.r35157.nenjim.hubd.impl.ref;
import com.r35157.nenjim.hubd.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;
}
}