JAVA-10625: Remove module immutables

This commit is contained in:
sampadawagde
2022-04-12 20:43:57 +05:30
parent 44726ef24c
commit bebfb65095
14 changed files with 14 additions and 53 deletions

View File

@@ -0,0 +1,9 @@
package com.baeldung.immutable;
import org.immutables.value.Value;
@Value.Immutable
public abstract class Person {
abstract String getName();
abstract Integer getAge();
}