feature: test change in BaseEntity

This commit is contained in:
Nir Peleg 2026-01-30 16:40:08 +02:00
parent c2a4fe6b95
commit eb2605ee0e

View file

@ -48,4 +48,8 @@ public class BaseEntity implements Serializable {
return this.id == null;
}
public void helloWorld() {
System.out.println("Hello World!");
}
}